website/templates/index.html

13 lines
231 B
HTML
Raw Permalink Normal View History

2022-09-26 05:46:56 +00:00
{% extends "base.html" %}
{% block title %}{{ config.extra.sitename|safe }}{% endblock title %}
{% block head %}
{% endblock head %}
{% block body %}
2022-09-26 21:42:42 +00:00
<main class="center">
2022-09-26 05:46:56 +00:00
{{section.content | safe}}
</main>
{% endblock body %}