Conflicts: Gemfile Gemfile.lock app/assets/stylesheets/application.css.sass app/assets/templates/comment_tpl.jst.hbs app/assets/templates/stream-element_tpl.jst.hbs app/helpers/aspects_helper.rb app/helpers/contacts_helper.rb app/views/aspects/_aspect_listings.haml app/views/aspects/toggle_contact_visibility.js.erb app/views/contacts/_aspect_listings.haml app/views/layouts/_header.html.haml app/views/shared/_footer.html.haml app/views/tags/_followed_tags_listings.haml
25 lines
642 B
Handlebars
25 lines
642 B
Handlebars
{{#if likesCount}}
|
|
<div class="comment">
|
|
<div class="media">
|
|
<div alt="Heart" class="icons-heart"></div>
|
|
|
|
<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}}
|