9 lines
201 B
HTML
9 lines
201 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>{{ page.title }}</h1>
|
|
{%- include "partials/statements.html" -%}
|
|
{%- include "partials/toc.html" -%}
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|