duckling/templates/section.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
250 B
HTML

{% extends "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 %}