23 lines
No EOL
592 B
Text
23 lines
No EOL
592 B
Text
{%- capture title %}
|
|
{% if type == 'repost-of' %}
|
|
Reposts
|
|
{% elsif type == 'like-of' %}
|
|
Likes
|
|
{% endif %}
|
|
{% endcapture -%}
|
|
{% if mentions[type].size > 0 %}
|
|
<h2>{{ title }}</h2>
|
|
<div class="interaction__wrapper flex--centered">
|
|
<ul>
|
|
{% for mention in mentions[type] %}
|
|
<li>
|
|
<a href={{mention.url}}>
|
|
<div class="avatar__wrapper flex--centered">
|
|
{% image mention.author.photo, mention.author.name, 'avatar__wrapper-image' %}
|
|
</div>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %} |