48 lines
1.3 KiB
Handlebars
48 lines
1.3 KiB
Handlebars
<a href="#" class="label like" title="{{#if user_like}} Unlike {{else}} Like {{/if}}">
|
|
{{#if user_like}}
|
|
<i class="icon-heart icon-red"></i>
|
|
{{else}}
|
|
<i class="icon-heart icon-white"></i>
|
|
{{/if}}
|
|
{{likes_count}}
|
|
</a>
|
|
|
|
<a href="#" class="label follow" title="{{#if user_participation}} Stop Following {{else}} Follow {{/if}} Post">
|
|
{{#if user_participation}}
|
|
<i class="icon-plus icon-green"></i>
|
|
{{else}}
|
|
<i class="icon-plus icon-white"></i>
|
|
{{/if}}
|
|
{{participations_count}}
|
|
</a>
|
|
|
|
{{#if userCanReshare}}
|
|
<a href="#" class="label reshare" title="{{#if user_reshare}} Reshared {{else}} Reshare {{/if}}">
|
|
{{#if user_reshare}}
|
|
<i class="icon-retweet icon-blue"></i>
|
|
{{else}}
|
|
<i class="icon-retweet icon-white"></i>
|
|
{{/if}}
|
|
{{reshares_count}}
|
|
</a>
|
|
{{/if}}
|
|
|
|
<a href="#" class="label comment" rel="invoke-interaction-pane" title="Comment">
|
|
<i class="icon-comment icon-white"></i>
|
|
{{comments_count}}
|
|
</a>
|
|
|
|
<!-- this acts as a dock underlay -->
|
|
<div id="post-info-sneaky">
|
|
<a href="#" rel="invoke-interaction-pane">
|
|
<div id="post-info-container-sneaky">
|
|
<img src="/images/up-tick-inset.png" class="info-tick"/>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- this closes an open interaction pane -->
|
|
<div id="close-reactions-pane-container">
|
|
<a href="#" id="close-reactions-pane" rel="hide-interaction-pane"> </a>
|
|
</div>
|
|
|