blob: 56e1b751f8da3b7bdd021d0eb76d29ebab746301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block title %}{{ section.title }}{% endblock %}
{% block header %}{{ section.title }}{% endblock %}
{% block navigation %}<a href="{{ section.path | safe }}">{{ section.title }}</a>{% endblock %}
{% block content %}
<article title="{{ section.title }}">
{{ section.content | safe }}
</article>
{% endblock %}
|