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

{% block subtitle %}
	{{ post.title }} | 
{% endblock %}
{% block main %}
<p><a href="/">&larr; home</a></p>
<article role="article">
	<h1>{{ post.title }}</h1>
	<section>{{ post.html | safe }}</section>
</article>
{% endblock %}