duckling/templates/section.html
david-swift 5d621bc729
Some checks are pending
Publish / publish (push) Waiting to run
Implement docs sidebar #3
2025-04-01 14:31:12 +02:00

11 lines
261 B
HTML

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