{% import "_macros.html" as macros %} {% block title %}{{ config.title }}{% endblock title %} {% block favicon %} {% endblock favicon %} {% include "_variables.html" %} {% block head %} {% endblock head %} {% block header %}
{{ macros::render_header() }}
{% endblock header %}
{% block toc %} {% if page.ancestors %} {% set section = get_section(path=page.ancestors | last) %} {% endif %} {% if section.ancestors %} {% set parent = get_section(path=section.ancestors | last) %} {% endif %}
{% if section.subsections %} {% for s in section.subsections %} {% set p = get_section(path=s) %} {% endfor %} {% endif %} {% if section.pages %} {% for p in section.pages %} {% endfor %} {% endif %} {% if parent %} {% endif %}
{% endblock toc %}
{% block content %}
{{ section.title }}
{{ section.content | safe }} {% endblock content %}
{% block sidebar %} {% endblock sidebar %}
{% block footer %} {% endblock footer %}