diaspora/app/assets/templates/single-post-viewer/single-post-actions_tpl.jst.hbs
2013-08-22 19:06:06 +02:00

37 lines
1.2 KiB
Handlebars

<div class='pull-right'>
<span class='public-info'>
{{#if public}}
<i class="entypo globe small"> </i>
{{else}}
<i class="entypo lock small"> </i>
{{/if}}
</span>
<span class="post-time">
<time datetime="{{created_at}}" title="{{localTime created_at}}" />
</span>
<div class="buttons pull-right">
<a href="#" rel="auth-required" 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="#" rel="auth-required" class="focus-comment" title="{{t "viewer.comment"}}">
<i class="entypo comment gray large"></i>
</a>
{{#if userCanReshare}}
<a href="#" rel="auth-required" class="reshare" title="{{t "viewer.reshare"}}">
<i class="entypo retweet gray large"></i>
</a>
{{else}}
{{#if userReshare}}
<a href="#" rel="auth-required" class="reshare-viewonly" title="{{t "viewer.reshared"}}">
<i class="entypo retweet blue large"></i>
</a>
{{/if}}
{{/if}}
</div>
</div>