Files
blog/templates/section.html
2024-12-01 17:40:35 +03:30

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