diaspora/public/javascripts/app/templates/likes-info.handlebars
danielgrippi dba50ae273 Bring the likes back. Ditch the pins.
Revert "swap pin for heart [ci skip]"

This reverts commit 488e064e11.

Conflicts:

	app/views/templates/likes_info.jst

Revert "reference pin icon in mobile view [ci skip]"

This reverts commit 9377dd30f4.

Revert "first pass at strickly user level rename from like => pin. still need to update assets"

This reverts commit d06ccb9ba9.

Conflicts:

	config/locales/diaspora/en.yml

add heart icon back
2012-02-18 16:26:15 -08:00

28 lines
686 B
Handlebars

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