all repos — nasg @ 0bd85c45188e222435bb326b13c1777efaf4e77f

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
{% 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 %}