summaryrefslogtreecommitdiff
path: root/mod/web/blog/templates/post.html
blob: b1981e40dd367c745bf993c45f5aee59f23df158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}
{% block title%}
  {{ page.title }} - {{ super() }}
{% endblock title %}

{% block content %}

<h1 style="text-align: center; margin-top: 1em;">{{ page.title }}</h1>
<article>
  {{ page.content | safe }}
</article>
{% endblock content %}