mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 14:13:37 +08:00
20 lines
451 B
Handlebars
20 lines
451 B
Handlebars
|
<header class="page-header discussion-header">
|
||
|
{{partial "discussion-header"}}
|
||
|
</header>
|
||
|
|
||
|
<section class="items posts">
|
||
|
{{#each item in postStream}}
|
||
|
|
||
|
{{#view "discussion-item" item=item}}
|
||
|
{{#if item.post}}{{view "discussion-post" post=item.post}}{{/if}}
|
||
|
{{/view}}
|
||
|
|
||
|
{{/each}}
|
||
|
</section>
|
||
|
|
||
|
{{#if postStream.lastLoaded}}
|
||
|
<footer class="page-footer discussion-footer">
|
||
|
{{menu-list items=view.footerControls class="list-inline"}}
|
||
|
</footer>
|
||
|
{{/if}}
|