framework/ember/app/templates/components/discussion/post-comment.hbs
Toby Zerner 011ae3603e Implement "renamed" posts
Record when the discussion was renamed, from what, and by whom.
Information is stored in the `content` field as a serialised JSON
object because proper polymorphism will be too difficult with Ember
Data and especially when extensions try to add new post types.
2015-02-13 10:23:38 +10:30

14 lines
249 B
Handlebars

{{partial "components/discussion/post-controls"}}
<header class="post-header">
{{ui/item-list items=header}}
</header>
<div class="post-body">
{{{post.contentHtml}}}
</div>
<aside class="post-footer">
{{ui/item-list items=footer}}
</aside>