diaspora/app/assets/templates/reshare_tpl.jst.hbs
2015-03-12 16:20:32 +01:00

46 lines
935 B
Handlebars

<div class="reshare">
{{#if root}}
<div class="media">
{{#with root}}
<a href="/people/{{author.guid}}" class="img {{{hovercardable this}}}">
{{{personImage author 'small'}}}
</a>
{{/with}}
{{#with root}}
<div class="bd">
<div>
{{#linkToAuthor author}}
{{name}}
{{/linkToAuthor}}
<span class="details grey">
-
<a href="/posts/{{id}}">
<time class="timeago" datetime="{{created_at}}"/>
</a>
{{#if interactions.reshares_count}}
-
{{t "stream.reshares" count=interactions.reshares_count}}
{{/if}}
</span>
</div>
{{/with}}
{{> status-message}}
</div>
</div>
{{else}}
<p>
{{t "stream.original_post_deleted"}}
</p>
{{/if}}
</div>