all repos — nasg @ e9899b3e3301c038e51a7494594640c4eface810

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
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
{% if post.reactions.bookmark %}
	{% for reaction in post.reactions.bookmark %}
		{% if post.title|length %}
			<h2 class="p-name">{{ post.title }}</h2>
			<p>
			<svg class="icon"><use xlink:href="#icon-bookmark" /></svg>
			<a href="{{ reaction }}" class="u-bookmark-of" title="Bookmarked URL: {{ reaction }}">{{ reaction }}</a>
			</p>
		{% else %}
			<p class="p-name">
				<svg class="icon"><use xlink:href="#icon-bookmark" /></svg>
				<a href="{{ reaction }}" class="{{ class }}">{{ reaction }}</a>
			</p>
		{% endif %}
	{% endfor %}
{% endif %}

{% if post.reactions.reply %}
	{% for reaction in post.reactions.reply %}
		<p 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>
		</p>
	{% endfor %}
{% endif %}

{% if post.reactions.repost %}
	{% for reaction in post.reactions.repost %}
		{% if post.title|length %}
			<h2 class="p-name">{{ post.title }}</h2>
			<p>
			<svg class="icon"><use xlink:href="#icon-repost" /></svg>
			<a href="{{ reaction }}" class="u-repost-of" title="Repost of: {{ reaction }}">{{ reaction }}</a>
			</p>
		{% else %}
			<p>
			<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>
			</p>
		{% endif %}
	{% endfor %}
{% endif %}

{% if post.reactions.fav %}
	{% for reaction in post.reactions.fav %}
		{% if post.title|length %}
			<h2 class="p-name">{{ post.title }}</h2>
			<p>
			<svg class="icon"><use xlink:href="#icon-repost" /></svg>
			<a href="{{ reaction }}" class="u-favorite-of" title="Favorite of: {{ reaction }}">{{ reaction }}</a>
			</p>
		{% else %}
			<p>
			<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>
			</p>
		{% endif %}
	{% endfor %}
{% endif %}