Merge pull request #9 from cobbspur/casperissue1
closes #1 - removing featured
This commit is contained in:
commit
213457659c
18
index.hbs
18
index.hbs
|
@ -1,13 +1,15 @@
|
||||||
{{!< default}}
|
{{!< default}}
|
||||||
<section class="content">
|
<section class="content">
|
||||||
<ul class="hfeed">
|
<ul class="hfeed">
|
||||||
{{#features}}
|
{{#foreach posts}}
|
||||||
<li class="featured">
|
{{#if @first}}
|
||||||
{{> featured}}
|
<li class="featured">
|
||||||
</li>
|
{{> full-post}}
|
||||||
{{/features}}
|
</li>
|
||||||
{{#posts}}
|
{{else}}
|
||||||
{{> post}}
|
{{> list-post}}
|
||||||
{{/posts}}
|
{{/if}}
|
||||||
|
{{/foreach}}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{{!< default}}
|
{{!< default}}
|
||||||
<section class="content">
|
<section class="content">
|
||||||
{{#post}}
|
{{#post}}
|
||||||
{{> featured}}
|
{{> full-post}}
|
||||||
{{/post}}
|
{{/post}}
|
||||||
</section>
|
</section>
|
Loading…
Reference in New Issue