premier commit

This commit is contained in:
2024-03-13 18:00:24 +01:00
parent 9b7a4c0714
commit 5a05f8c50d
20 changed files with 6722 additions and 1 deletions

13
templates/page.html Normal file
View File

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - {{ page.title|striptags }}{%endblock%}
{% block head %}
{{ super() }}
<meta name="description" content="{{ page.subtitle }} {{ page.description }}">
{% endblock %}
{% block content %}
<article>
{{ page.content }}
</article>
{% endblock %}