diaspora/app/assets/templates/comment_tpl.jst.hbs
Jonne Haß beb32ce91f hovercards everywhere (comments, likes, top left sidebar stream summary thingy...)
Say a word if you think it's getting too much...
2013-01-01 22:59:12 +01:00

27 lines
617 B
Handlebars

{{#if canRemove}}
<div class="controls">
<a href="#" class="delete comment_delete" title="{{t "delete"}}">
<img alt="Deletelabel" src="{{imageUrl "deletelabel.png"}}" />
<a/>
</div>
{{/if}}
<div class="img">
{{#linkToPerson author}}
{{{personImage this "small" "small"}}}
{{/linkToPerson}}
</div>
<div class="bd">
<a href="/people/{{author.guid}}" class="author author-name {{hovercardable this}}">
{{author.name}}
</a>
<div class="collapsible comment-content">
{{{text}}}
</div>
<div class="info">
<time class="timeago" datetime="{{created_at}}"/>
</div>
</div>