aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/page.html
blob: 7a53b7885ee1ac57d90dbe7f5fb0e1c360270d57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% block subtitle %}
	{{ post.title }}
{% endblock %}
{% block main %}
<article role="article">
	<h1>{{ post.title }}</h1>
	<section>{{ post.html | safe }}</section>
</article>
{% endblock %}