18 lines
340 B
HTML
18 lines
340 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="title">
|
||
|
{% if page is defined %}
|
||
|
{{ page.title }}
|
||
|
{% elif section is defined %}
|
||
|
{{ section.title }}
|
||
|
{% endif %}
|
||
|
</h1>
|
||
|
|
||
|
{% if page is defined %}
|
||
|
{{ page.content | safe }}
|
||
|
{% elif section is defined %}
|
||
|
{{ section.content | safe }}
|
||
|
{% endif %}
|
||
|
{% endblock content %}
|