33 lines
1,014 B
Handlebars
33 lines
1,014 B
Handlebars
<div class='pull-right'>
|
|
{{#if loggedIn}}
|
|
<a href="#" class="like" title="{{#if userLike}} {{t "viewer.unlike"}} {{else}} {{t "viewer.like"}} {{/if}}">
|
|
{{#if userLike}}
|
|
<i class="entypo heart red large"></i>
|
|
{{else}}
|
|
<i class="entypo heart gray large"></i>
|
|
{{/if}}
|
|
</a>
|
|
|
|
<a href="#" class="focus-comment" title="{{t "viewer.comment"}}">
|
|
<i class="entypo comment gray large"></i>
|
|
</a>
|
|
|
|
{{#if userCanReshare}}
|
|
<a href="#" class="reshare" title="{{t "viewer.reshare"}}">
|
|
<i class="entypo retweet gray large"></i>
|
|
</a>
|
|
{{else}}
|
|
{{#if userReshare}}
|
|
<a href="#" class="reshare-viewonly" title="{{t "viewer.reshared"}}">
|
|
<i class="entypo retweet blue large"></i>
|
|
</a>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#if authorIsNotCurrentUser}}
|
|
<a href="#" data-type="post" class="post_report" title="{{t "report.name"}}">
|
|
<i class="entypo gray large">!</i>
|
|
</a>
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|