summaryrefslogtreecommitdiffstats
path: root/templates/page.html
blob: 5cdf946bd933a5ff6410fd7f9efcf27fbe9ab9fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% 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>
		{% if page.taxonomies %}
			<span class="meta-tags">
				Merket: {{ page.taxonomies['tags'] | join(sep=", ") }}
			</span>
		{% endif %}
	</div>
	{{ page.content | safe }}
</article>
{% endblock content %}