2015-01-07 14:52:34 +08:00
|
|
|
{{#if post.deleteTime}}
|
|
|
|
{{fa-icon "trash-o" class="post-icon"}}
|
|
|
|
{{/if}}
|
|
|
|
|
2015-01-16 14:56:10 +08:00
|
|
|
<header class="post-header">
|
2015-01-07 14:52:34 +08:00
|
|
|
<h3 class="user">
|
|
|
|
{{#link-to "user" post.user}}{{user-avatar post.user}} {{post.user.username}}{{/link-to}}
|
|
|
|
</h3>
|
|
|
|
{{#link-to "discussion" post.discussion (query-params start=post.number) class="time"}}
|
2015-01-16 14:56:10 +08:00
|
|
|
{{human-time post.time}}
|
2015-01-07 14:52:34 +08:00
|
|
|
{{/link-to}}
|
|
|
|
{{#if post.editTime}}
|
|
|
|
<span class="post-edited" {{bind-attr title=editDescription}}>{{fa-icon "pencil"}}</span>
|
|
|
|
{{/if}}
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="post-body">
|
|
|
|
{{{post.contentHtml}}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<aside class="post-meta">
|
|
|
|
{{ui/controls/item-list items=meta}}
|
|
|
|
</aside>
|