kayomn.net/templates/page.html

11 lines
214 B
HTML
Raw Permalink Normal View History

2023-08-22 00:29:52 +02:00
{% extends "base.html" %}
{% block content %}
2024-06-24 13:09:14 +02:00
<header class="banner">
2024-06-24 00:48:29 +02:00
<div>{{ page.title }}</div>
<div>{{ page.description }}</div>
2024-06-24 13:09:14 +02:00
</header>
2023-08-22 00:29:52 +02:00
<article>{{ page.content | safe }}</article>
{% endblock content %}