mirror of
https://github.com/flarum/framework.git
synced 2024-12-11 21:43:38 +08:00
690174297d
- Componentize more stuff, heading in the direction of Ember 2.0 - Start CSS from scratch - Everything is broken atm!
20 lines
457 B
Handlebars
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}}
|