diaspora/public/javascripts/app/templates/reshare.handlebars

43 lines
863 B
Handlebars

<div class="reshare">
{{#if root}}
{{#with root}}
<a href="/people/{{author.guid}}">
<img src="{{author.avatar.small}}" class="avatar" />
</a>
<div class="content">
<div class="post_initial_info">
<span class="from">
<a href="/people/{{author.guid}}">
{{author.name}}
</a>
</span>
<span class="details">
-
<a href="/posts/{{id}}">
<time class="timeago" datetime="{{created_at}}"/>
</a>
</span>
{{#if reshares_count}}
-
{{t "stream.reshares" count=reshares_count}}
{{/if}}
</div>
{{> status-message}}
</div>
{{/with}}
{{else}}
<p>
{{t "stream.original_post_deleted"}}
</p>
{{/if}}
</div>