casper/index.hbs

16 lines
359 B
Handlebars
Raw Normal View History

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