block_reaction.html (view raw)
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
{% if post.reactions.bookmark %}
{% for reaction in post.reactions.bookmark %}
{% if post.title|length %}
<span class="p-name">{{ post.title }}</span><br />
<svg class="icon"><use xlink:href="#icon-bookmark" /></svg>
<a href="{{ reaction }}" class="u-bookmark-of" title="Bookmarked URL: {{ reaction }}">{{ reaction }}</a>
{% else %}
<span class="p-name">
<svg class="icon"><use xlink:href="#icon-bookmark" /></svg>
<a href="{{ reaction }}" class="{{ class }}">{{ reaction }}</a>
</span>
{% endif %}
{% endfor %}
{% endif %}
{% if post.reactions.reply %}
{% for reaction in post.reactions.reply %}
<span class="p-name">
<svg class="icon"><use xlink:href="#icon-reply" /></svg>
<a href="{{ reaction }}" class="u-in-reply-to" title="Reply to: {{ reaction }}">{{ reaction }}</a>
</span>
{% endfor %}
{% endif %}
{% if post.reactions.repost %}
{% for reaction in post.reactions.repost %}
{% if post.title|length %}
<span class="p-name">{{ post.title }}</span><br />
<svg class="icon"><use xlink:href="#icon-repost" /></svg>
<a href="{{ reaction }}" class="u-repost-of" title="Repost of: {{ reaction }}">{{ reaction }}</a>
{% else %}
<svg class="icon"><use xlink:href="#icon-repost" /></svg>
<span class="p-name">
<a href="{{ reaction }}" class="u-repost-of" title="Repost of: {{ reaction }}">{{ reaction }}</a>
</span>
{% endif %}
{% endfor %}
{% endif %}
{% if post.reactions.fav %}
{% for reaction in post.reactions.fav %}
{% if post.title|length %}
<span class="p-name">{{ post.title }}</span><br />
<svg class="icon"><use xlink:href="#icon-repost" /></svg>
<a href="{{ reaction }}" class="u-favorite-of" title="Favorite of: {{ reaction }}">{{ reaction }}</a>
{% else %}
<svg class="icon"><use xlink:href="#icon-repost" /></svg>
<span class="p-name">
<a href="{{ reaction }}" class="u-favorite-of" title="Favorite of: {{ reaction }}">{{ reaction }}</a>
</span>
{% endif %}
{% endfor %}
{% endif %}
|