all repos — nasg @ a506d9d18fe98cf667e45566b3f7be3dd47bbdd3

templates/Comment.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
<li class="h-entry p-comment">
	<span>
		<time class="dt-published" datetime="{{ comment.pubtime }}">
			{{ comment.pubdate }}
		</time>
	</span>
	<span class="p-author h-card">
	{% if comment.author.url %}
		<a class="url u-url" href="{{ comment.author.url }}">
			<span class="p-name fn">{{ comment.author.name }}</span>
		</a>
	{% else %}
		<span class="p-name fn">{{ comment.author.name }}</span>
	{% endif %}
	</span>
{% if 'webmention' == comment.type %}
	<span class="source">
		<svg class="icon" width="16" height="16">
			<use xlink:href="#icon-link"></use>
		</svg>
		<a class="u-url" href="{{ comment.source }}">{{ comment.source }}</a>
	</span>
{% else %}
	<span class="reaction">
		<a class="u-url" href="{{ comment.source }}">{{ comment.type }} </a>
	</span>
{% endif %}
</li>