summaryrefslogtreecommitdiffstats
path: root/src/templates/entry.html
blob: 3bc2fbdc059df1f5e1bc13fbff54a57a7b5861df (plain)
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
37
38
{% extends 'layout.html' %}

{% block head %}
	<link href="isso.css" rel="stylesheet">
	<link href="../journal.xml" type="application/atom+xml" rel="alternate" title="Journal Atom feed" />
{% endblock head %}

{% block content %}
	<article itemscope itemtype="http://schema.org/Article"
	         class="entry" id="entry:{{ entry.id }}">

		<h2 itemprop="name" class="title">{{ entry.title }}</h2>

		<div class="info">
			Published on
			<time itemprop="datePublished" datetime="{{ entry.date.strftime('%Y-%m-%d') }}">
				{{ entry.date.strftime('%Y-%m-%d') }}
			</time>

			<span itemprop="author" itemscope itemtype="http://schema.org/Person">
				{% if entry.author_link %}
					by <a itemprop="name" rel="author" href="{{ entry.author_link }}">{{ entry.author }}</a>
				{% else %}
					by {{ entry.author }}
				{% endif %}
			</span>
		</div>

		{{ entry.body }}
	</article>

	<script data-isso="https://theos.kyriasis.com/isso/"
	        data-isso-css="false"
	        data-isso-vote="true"
	        src="https://theos.kyriasis.com/isso/js/embed.min.js"></script>
	<section id="isso-thread" class="botborder"></section>

{% endblock content %}