all repos — nasg @ 12e6866e0f2e6ca9e135bc0f4aea162b6e5b4696

templates/Singular_title.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
{% if post.is_reply %}
	<span class="p-name">
		<svg class="icon" width="16" height="16"><use xlink:href="#icon-reply" /></svg>
		<a href="{{ post.slug }}" class="u-url" title="{{ post.title }}">
			RE:
		</a>
		<a href="{{ post.is_reply }}" class="u-in-reply-to" title="Reply to: {{ post.is_reply }}">
			{{ post.is_reply }}
		</a>
	</span>
{% else %}
	<a href="/{{ post.slug }}/" title="{{ post.title }}" class="{% if post.summary %}has-summary{% endif %}">
		<span class="entry-title p-name">{{ post.title }}</span>
	</a>
{% endif %}