all repos — nasg @ c81f0860ae966850211fb948b3590e5f64096358

templates/Singular_title.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
{% if post.is_bookmark %}
	<p class="p-name">{{ post.title }}</p>
	<p>
		<svg class="icon"><use xlink:href="#icon-bookmark" /></svg>
		<a href="{{ post.is_bookmark }}" class="u-bookmark-of" title="Bookmarked URL: {{ post.is_bookmark }}">
			{{ post.is_bookmarkl }}
		</a>
	</p>
{% elif post.is_fav %}
	<p class="p-name">{{ post.title }}</p>
	<p>
		<svg class="icon"><use xlink:href="#icon-repost" /></svg>
		<a href="{{ post.is_fav }}" class="u-favorite-of" title="Favorite of: {{ post.is_fav }}">
			{{ post.is_fav }}
		</a>
	</p>
{% elif post.is_reply %}
	<p class="p-name">
		<svg class="icon"><use xlink:href="#icon-reply" /></svg>
		<a href="{{ post.is_reply }}" class="u-in-reply-to" title="Reply to: {{ post.is_reply }}">
			{{ post.is_reply }}
		</a>
	</p>
{% else %}
	<p>
		<a href="/{{ post.slug }}/" title="{{ post.title }}">
			<span class="entry-title p-name">{{ post.title }}</span>
		</a>
	</p>
{% endif %}