mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
no refs refsb56e684258
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.
10 lines
No EOL
249 B
Handlebars
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> |