blob: 7a6934790e373aa39f59b74f7032554508d608fb (
plain)
1
2
3
4
5
6
7
8
|
{% extends "base.html" %}
{% block title %}{{ super() }} — {{ page.title }}{% endblock title %}
{%- block content %}
<h1>{{ page.title }}</h1>
{{ page.content }}
{% endblock content -%}
|