diaspora/app/assets/templates/reshare_tpl.jst.hbs
2015-10-06 23:29:09 +02:00

37 lines
899 B
Handlebars

<div class="reshare">
<div class="media">
{{#if root}}
{{#with root}}
<a href="/people/{{author.guid}}" class="img {{{hovercardable this}}}">
{{{personImage author 'small'}}}
</a>
<div class="bd">
<div>
{{#linkToAuthor author}}
{{name}}
{{/linkToAuthor}}
<span class="details gray">
-
<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>
{{else}}
<p>
{{t "stream.original_post_deleted"}}
</p>
{{/if}}
</div>
</div>