duckling/templates/page.html
david-swift 7377a98fd1
Some checks are pending
Publish / publish (push) Waiting to run
Improve documentation design #3
2025-04-12 21:33:30 +02:00

11 lines
241 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ page.title }}</h1>
{%- include "partials/statements.html" -%}
{%- if page.extra.toc -%}
{%- include "partials/toc.html" -%}
{%- endif -%}
{{ page.content | safe }}
{% endblock content %}