framework/ember/app/templates/discussion.hbs
Toby Zerner 690174297d Rejigging templates for redesign.
- Componentize more stuff, heading in the direction of Ember 2.0
- Start CSS from scratch
- Everything is broken atm!
2015-01-01 20:08:38 +10:30

20 lines
457 B
Handlebars

<header class="page-header discussion-header">
{{partial "partials/discussion-header"}}
</header>
<section class="items posts">
{{#each item in postStream}}
{{#discussion-item item=item}}
{{#if item.post}}{{discussion-post post=item.post}}{{/if}}
{{/discussion-item}}
{{/each}}
</section>
{{#if postStream.lastLoaded}}
<footer class="page-footer discussion-footer">
{{menu-list items=view.footerControls class="list-inline"}}
</footer>
{{/if}}