kayomn.net/templates/page.html

11 lines
214 B
HTML
Raw Normal View History

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