aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/page.html
blob: 6c22589f8f391f285baa1cfabc3fa1ddc446f43e (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>{{ post.html | safe }}</div>
</article>
{% endblock %}