summaryrefslogtreecommitdiffstats
path: root/templates/page.html
blob: 49f3cd5397ff07b7eae7a16fbb601719422f7f26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block content %}
{% set post = page -%}
<article class="post">
	{% include "posts/header.html" %}
	<section class="post-body">
		{{ post.content | safe }}
	</section>
</article>
{% endblock content %}