Files
sukr/templates/content/default.html
2026-01-31 15:13:24 -07:00

10 lines
270 B
HTML

{% extends "base.html" %} {% block content %}
<article>
<h1>{{ page.title }}</h1>
{% if page.description %}
<p class="description">{{ page.description }}</p>
{% endif %}
<section class="content">{{ content | safe }}</section>
</article>
{% endblock content %}