{% import "macro.html" as macro %} {% block title %}{{ config.title }}{% endblock title %}
{% block content %} {% set_global header_count = 0 %} {% for h2 in section.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 %}
{{ section.content | safe }}
{% endblock content %}