studio-umzu/themes/duckquill/templates/page.html

11 lines
272 B
HTML
Raw Permalink Normal View History

2025-08-27 16:56:14 +02:00
{% extends "base.html" %}
{% block content %}
<h1>{{ page.title }}</h1>
{%- include "partials/statements.html" -%}
{%- if page.extra.toc and not page.extra.toc_sidebar -%}
{%- include "partials/toc.html" -%}
{%- endif -%}
{{ page.content | safe }}
{% endblock content %}