summaryrefslogtreecommitdiff
path: root/packages/blog/templates/post.html
blob: b819520dd896b4dc298ea72bdb941f40a41c7f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block title%}
  {{ page.title }} - {{ super() }}
{% endblock title %}

{% block content %}

<h1 style="text-align: center">{{ page.title }}</h1>
<article>
  {{ page.content | safe }}
</article>

{% endblock content %}