site/templates/page.html
2024-11-21 03:48:30 +02:00

11 lines
176 B
HTML

{% extends "base.html" %}
{% block content %}
<main>
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
{{ page.content | safe }}
</main>
{% endblock %}