0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00
ghost/test/utils/fixtures/themes/test-theme/podcast/rss.hbs
Rish cb43a8e3a8 Updated fixture for test theme to use @site
no refs
refs b56e684258

The test theme fixture was using old `@blog`  helper which was deprecated in v2 and replaced with `@site`. Since the latest bump to Gscan - b56e684258 - now validates a theme by going through nested `*.hbs` files, this was missed so far as it didn't fail the tests. This commit updates the test theme fixture to use updated value.
2021-03-04 01:09:54 +05:30

10 lines
No EOL
249 B
Handlebars

<rss>
<channel>
<title>{{@site.title}}</title>
{{#get "posts" filter="featured:true" limit="20"}}
{{#foreach posts}}
<link>{{url}}</link>
{{/foreach}}
{{/get}}
</channel>
</rss>