2021-12-03 21:55:43 +01:00
|
|
|
{% extends "index.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ page.title }} — {{ config.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ page.title }}</h1>
|
2022-09-22 11:59:17 +02:00
|
|
|
{{ macros::toc() }}
|
2021-12-03 21:55:43 +01:00
|
|
|
{{ page.content | safe }}
|
|
|
|
{{ macros::page_info(page=page) }}
|
|
|
|
{% endblock content %}
|