contentdb/app/templates/flatpage.html

14 lines
260 B
HTML

{% extends "base.html" %}
{% block title %}
{{ page['title'] }}
{% endblock %}
{% block container %}
<main class="container mt-4 content">
{% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %}
{{ page.html | safe }}
</main>
{% endblock %}