cffc941b6b
- Helpers no longer require data to be passed explicitly to them
15 lines
346 B
Handlebars
15 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>
|