summaryrefslogtreecommitdiffstats
path: root/templates/page.html
blob: 1ad56a931402fda32d94bf51080e9aab383f6c54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% block language %}
	{% set translations = page.translations %}
	{% include "translation-links.html" %}
{% endblock langauge %}

{% block content %}
{% set post = page -%}
<article class="post">
	{% include "posts/header.html" %}
	<section class="post-body">
		{{ post.content | safe }}
	</section>
	<footer>
		{% include "license.html" %}
	</footer>
</article>
{% endblock content %}