aboutsummaryrefslogtreecommitdiff
path: root/app/templates/flatpage.html
blob: 05acb91a45acc12bfe12412e1dbc26b0a90eb84f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% 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 %}