0a7f8ea03a
- changed post.hbs to list-post.hbs and refactored code - changed featured.hbs to full-post.hbs and refactored code - index.hbs now selects first post and extends full-post then list-post on remaining posts - single.hbs now extends full-post
15 lines
330 B
Handlebars
15 lines
330 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>
|
|
|
|
</section>
|