aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/page.html
blob: a302c4bdbaa2d584410ff21641e7a4da16949418 (plain) (blame)
1
2
3
4
5
6
7
8
{% extends "base.html" %}
{% block subtitle %}{{ post.title }} - {% endblock %}
{% block main %}
<article>
    <h1>{{ post.title }}</h1>
    <div class="page-body">{{ post.html | safe }}</div>
</article>
{% endblock %}