summaryrefslogtreecommitdiffstats
path: root/src/templates/page.html
blob: 9e0dddced4db6a46ebae512f9028a889d6c14dc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'layout.html' %}

{% block content %}
	<header>
{% include 'nav.html' %}
		<h1>{{ page.title }}</h1>
	</header>

	<article id="{{ page.article_id }}" class="botborder" itemprop="mainContentOfPage">

		{{ page.body }}

		<p id="last-upd">Last updated <time itemprop="dateModified" datetime="{{ page.date }}">{{ page.date }}</time></p>
		<p id="author"><a rel="author" href="{{ page.author_link }}">{{ page.author }}</a></p>

	</article>
{% endblock content %}