{% if section.toc %}
{% set toc = section.toc %}
{% elif page.toc %}
{% set toc = page.toc %}
{% endif %}
{% if toc %}
{% for h in toc %}
{% if h.children %}
{% for h2 in h.children %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% block content %}
Overview
{{ section.content | safe }}
{% endblock content %}