11 lines
284 B
HTML
11 lines
284 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ section.title }}</h1>
|
||
|
{%- include "partials/statements.html" -%}
|
||
|
{%- if section.extra.toc and not section.extra.toc_sidebar -%}
|
||
|
{%- include "partials/toc.html" -%}
|
||
|
{%- endif -%}
|
||
|
{{ section.content | safe }}
|
||
|
{% endblock content %}
|