Welcome to mirror list, hosted at ThFree Co, Russian Federation.

likes-info.jst.hbs « templates « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a833be78c5e0f8596a913c2749ce2789459b871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{#if likes_count}}
  <div class="comment">
    <div class="media">
      <span class="img">
        <img alt="Heart" src="{{imageUrl "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}}