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

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

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

{% if page.permalink is not containing('.onion') %}
<section>
    {% include 'includes/comments.html' %}
</section>
{% endif %}
{% endblock content %}