emile/templates/page.html

18 lines
340 B
HTML
Raw Normal View History

2024-09-25 00:26:20 +02:00
{% 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 %}