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

{% block content %}
	<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 %}