{% extends "index.html" %} {% block title %} {{ config.title }} | {{ page.title }} {% endblock title %} {% block nav %}

{{ page.title }}

{{ page.description | safe }} {% set parent = page.ancestors | last %} {% set parent_section = get_section(path=parent) %} {{ macro::tree(sec=parent_section) }} {% endblock nav %} {% block content %}
{% if page.date %} {{ page.date | date(format="%d.%m.%Y") }} {% endif %} {% if page.taxonomies.authors %} {% endif %} {% if page.taxonomies.tags %} {% endif %}
{% set_global header_count = 0 %} {% for h2 in page.toc %} {% set_global header_count = header_count + 1 %} {% for h3 in h2.children %} {% set_global header_count = header_count + 1 %} {% for h4 in h3.children %} {% set_global header_count = header_count + 1 %} {% endfor %} {% endfor %} {% endfor %} {% if header_count > 4 %} {% endif %}
{{ page.content | safe }}
{% endblock content %}