0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/test/utils/fixtures/themes/test-theme/podcast/rss.hbs
Hannah Wolfe 7f1d3ebc07
Move tests from core to root (#11700)
- move all test files from core/test to test/
- updated all imports and other references
- all code inside of core/ is then application code
- tests are correctly at the root level
- consistent with other repos/projects

Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
2020-03-30 16:26:47 +01:00

10 lines
No EOL
249 B
Handlebars

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