Files
hagrid/templates/page.html
2025-09-29 22:37:55 +02:00

9 lines
272 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="about {%- if page %} {{ page.slug }}{%- endif -%}">
{% include "partials/menu.html" %}
{% if page %}{{ page.content | safe }}{% elif section %}{{ section.content | safe }}{% endif %}
</div>
{% endblock content %}