1
0
em.0x45.cz/templates/page.html

14 lines
300 B
HTML
Raw Normal View History

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) }}
2022-12-04 17:27:08 +01:00
{{ macros::page_updates(page=page) }}
2021-12-03 21:55:43 +01:00
{% endblock content %}