all repos — nasg @ cae5490a60f42c096b13ac284b30e192a4f721f3

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
 29
 30
 31
 32
 33
 34
 35
 36
{% include 'block_header_open.html' %}
	<title>comment #{{ reply.id }} | {{ site.domain }}</title>
	<link rel="canonical" href="{{ site.url }}/{{ site.commentspath }}/{{ reply.fname }}/" />
	<meta name="author" content="{{ reply.author.name }}">
{% include 'block_header_close.html' %}

<section class="content-body">
	<article class="h-entry p-comment">
		<a class="u-url u-uuid" href="{{ site.url }}/{{ site.commentspath }}/{{ reply.fname }}/"></a>
		<header>
			<div class="p-author h-card">
				{% if reply.author.url %}
					<a class="url u-url" href="{{ reply.author.url }}">
						<span class="p-name fn">{{ reply.author.name }}</span>
					</a>
				{% else %}
					<span class="p-name fn">{{ reply.author.name }}</span>
				{% endif %}
			</div>
			<time class="dt-published" datetime="{{ reply.published|date('c') }}">
				{{ reply.published|date('%Y-%m-%d %H:%M') }}
			</time>
		</header>
		<div class="e-content">
			{{ reply.html }}
		</div>
		<footer>
			{% if reply.source|length > 0 %}
			<a href="{{ reply.source }}" class="u-repost-of">{{ reply.source }}</a>
			{% endif %}
			<a class="u-in-comment-to" href="{{ reply.target }}"></a>
		</footer>
	</article>
</section>

{% include 'block_footer.html' %}