contentdb/app/templates/flatpage.html

14 lines
260 B
HTML
Raw Normal View History

2018-05-14 15:46:41 +02:00
{% extends "base.html" %}
{% block title %}
{{ page['title'] }}
{% endblock %}
2020-04-21 20:18:06 +02:00
{% block container %}
<main class="container mt-4 content">
{% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %}
2018-05-14 15:46:41 +02:00
2020-04-21 20:18:06 +02:00
{{ page.html | safe }}
</main>
2018-05-14 15:46:41 +02:00
{% endblock %}