summaryrefslogtreecommitdiff
path: root/templates/page.html
blob: a5e3d6f684aa90931a50a8c4ecfd4c6467d17aa4 (plain)
1
2
3
4
5
6
7
8
{% extends "base.html" %}

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

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