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

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