website/templates/section.html
2023-05-27 15:32:08 +02:00

14 lines
353 B
HTML

{% extends "base.html" %}
{% block title %}{% if section.title %}{{ section.title }} | {% endif %}{{ config.extra.sitename|safe }}{% endblock title %}
{% block head %}
{% endblock head %}
{% block body %}
<main class="narrower">
{% if section.title %}<h1>{{ section.title }}</h1>{% endif %}
{{ section.content | safe }}
</main>
{% endblock body %}