diaspora/app/assets/templates/single-post-viewer/single-post-interactions_tpl.jst.hbs
2016-02-23 22:15:43 +01:00

44 lines
1.1 KiB
Handlebars

{{#if resharesCount}}
<div id="reshares" class="clearfix">
<span class="count">
<i class="entypo-reshare middle gray"></i>
<span>{{resharesCount}}</span>
</span>
<span class="interaction-avatars">
{{#each reshares}}
{{#linkToAuthor author}}
{{{personImage this 'small' 'micro'}}}
{{/linkToAuthor}}
{{/each}}
</span>
</div>
{{/if}}
{{#if likesCount}}
<div id="likes" class="clearfix">
<span class="count">
<i class="entypo-heart middle gray"></i>
<span>{{likesCount}}</span>
</span>
<span class="interaction-avatars">
{{#each likes}}
{{#linkToAuthor author}}
{{{personImage this 'small' 'micro'}}}
{{/linkToAuthor}}
{{/each}}
</span>
</div>
{{/if}}
{{#if commentsCount}}
<div id="comments-meta" class="clearfix">
<span class="count">
<i class="entypo-comment middle gray"></i>
<span>{{commentsCount}}</span>
</span>
</div>
{{else}}
<div class="no-comments">
<h4>{{t "comments.no_comments" }}</h4>
</div>
{{/if}}
<div id='comments'>
</div>