nasg/templates/Singular_title.html
2018-03-21 15:43:35 +00:00

12 lines
380 B
HTML

{% if post.is_reply %}
<span 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>
</span>
{% else %}
<a href="/{{ post.slug }}/" title="{{ post.title }}">
<span class="entry-title p-name">{{ post.title }}</span>
</a>
{% endif %}