kita/templates/pages.html
2023-10-23 20:35:59 +08:00

10 lines
228 B
HTML

{% extends "index.html" %}<!---->
{% block main %}
<article>
<header class="mb-16">
<h1 class="!my-0 pb-2.5">{{ page.title }}</h1>
</header>
<section>{{ page.content | safe }}</section>
</article>
{% endblock main %}