diff options
Diffstat (limited to 'app/templates/flatpage.html')
| -rw-r--r-- | app/templates/flatpage.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/templates/flatpage.html b/app/templates/flatpage.html index 5143f57..05acb91 100644 --- a/app/templates/flatpage.html +++ b/app/templates/flatpage.html @@ -4,8 +4,10 @@ {{ page['title'] }} {% endblock %} -{% block content %} - {% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %} +{% block container %} + <main class="container mt-4 content"> + {% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %} - {{ page.html | safe }} + {{ page.html | safe }} + </main> {% endblock %} |
