blob: f0bc3c9e3d2c466e715cc97ea1c1bc60fef75f14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{% extends "base.html" %}
{% block title %}{{ super() }} — {{ page.url }}{% endblock title %}
{%- block content %}
<section class="content">
<h1>{{ page.title }}</h1>
{{ page.content }}
</section>
{% endblock content -%}
|