Vivid-Casper/index.hbs
ErisDS cffc941b6b HTML helpers refactor - issue #246 item 2
- Helpers no longer require data to be passed explicitly to them
2013-07-11 01:28:04 +01:00

16 lines
346 B
Handlebars

{{!< default}}
<section class="content">
<ul class="hfeed">
{{#foreach posts}}
{{#if @first}}
<li class="featured">
{{> full-post}}
</li>
{{else}}
{{> list-post}}
{{/if}}
{{/foreach}}
</ul>
{{paginate}}
</section>