diaspora/app/assets/templates/likes-info_tpl.jst.hbs
Jonne Haß beb32ce91f hovercards everywhere (comments, likes, top left sidebar stream summary thingy...)
Say a word if you think it's getting too much...
2013-01-01 22:59:12 +01:00

27 lines
696 B
Handlebars

{{#if likesCount}}
<div class="comment">
<div class="media">
<span class="img">
<img alt="Heart" src="{{imageUrl "icons/heart.png"}}" />
</span>
<div class="bd">
{{#unless likes_fetched}}
<a href="#" class="expand_likes grey">
{{t "stream.likes" count=likesCount}}
</a>
{{else}}
{{#each likes}}
{{#with author}}
<a href="/people/{{guid}}" class="{{hovercardable this}}">
<img src="{{avatar.small}}" class="avatar micro" title="{{name}}"/>
</a>
{{/with}}
{{/each}}
{{/unless}}
</div>
</div>
</div>
{{/if}}