summaryrefslogtreecommitdiffstats
path: root/templates/page.html
blob: 56317a71e29f56a3214ee21a8d3e0d852cc680a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
{% block content %}
<article class="post">
	<h1>{{ page.title }}</h1>
	<div class="meta">
		<span class="meta-publish">
			Publisert: {{ page.date }}
			{% if page.author %}av {{ page.author }}{% endif %}
		</span>
		<span class="meta-tags">
			Merket: {{ page.taxonomies['tags'] | join(sep=", ") }}
		</span>
	</div>
	{{ page.content | safe }}
</article>
{% endblock content %}