diaspora/app/assets/templates/single-post-viewer/single-post-interaction-counts_tpl.jst.hbs
Steffen van Bergerem 709547860a
Refactor SPV post interactions
closes #7089
2016-09-25 03:07:02 +02:00

42 lines
1 KiB
Handlebars

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