Files
blog/templates/page.html
2024-12-01 16:55:08 +03:00

11 lines
272 B
HTML

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