duckling/templates/page.html

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 %}