diaspora/app/assets/templates/comment_tpl.jst.hbs
2014-01-17 22:11:17 +01:00

33 lines
859 B
Handlebars

<div id="{{guid}}">
<div class="img">
{{#linkToPerson author}}
{{{personImage this "small" "small"}}}
{{/linkToPerson}}
</div>
<div class="bd">
{{#if canRemove}}
<div class="controls">
<a href="#" class="delete comment_delete" title="{{t "delete"}}">
<div alt="Deletelabel" class="icons-deletelabel" />
<a/>
</div>
{{/if}}
{{#with author}}
<a href="/people/{{guid}}" class="author author-name {{hovercardable this}}">
{{name}}
</a>
{{/with}}
<div class="collapsible comment-content">
{{{text}}}
</div>
<div class="info">
<a href="/posts/{{parent.id}}#{{guid}}" class="permalink_comment">
<time class="timeago" data-original-title="{{{localTime created_at}}}" datetime="{{created_at}}"/>
</a>
</div>
</div>
</div>