site/templates/page.html

11 lines
176 B
HTML
Raw Permalink Normal View History

2024-11-14 17:35:47 +01:00
{% extends "base.html" %}
{% block content %}
<main>
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
{{ page.content | safe }}
</main>
{% endblock %}