This commit is contained in:
ZettaScript
2022-09-26 23:42:42 +02:00
parent 9a6af1d0d1
commit e060604096
4 changed files with 46 additions and 2 deletions

View File

@ -6,7 +6,7 @@
{% endblock head %}
{% block body %}
<main>
<main class="center">
{{section.content | safe}}
</main>
{% endblock body %}

12
templates/page.html Normal file
View File

@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}{{ config.extra.sitename|safe }}{% endblock title %}
{% block head %}
{% endblock head %}
{% block body %}
<main class="narrower">
{{page.content | safe}}
</main>
{% endblock body %}