aboutsummaryrefslogtreecommitdiff
path: root/templates/post.html
blob: 76f15c9e394f330af3b0ca1536ffbe99a72303ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'base.html' %}

{% block content %}
<section>
    <h1>{{ page.title | trim | safe }}</h1>
</section>

<section>
    {{ page.content | safe }}
</section>

<section>
    {% include 'includes/comments.html' %}
</section>
{% endblock content %}