summaryrefslogtreecommitdiff
path: root/website/templates/page.html
blob: 90b269df5ebc103464f6844183bf7f80c675ec40 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% import "macros.html" as macros %}

{% block content %}
    <article>
        <h1>{{ page.title }}</h1>

        {{ page.content | replace(from="<!-- toc -->", to=macros::toc() ) | safe }}
    </article>
{% endblock %}