{% for toc in toctree_data %}

{{toc.title}}

    {% for entry in toc.entries %}
  • {{entry.title}} {% if entry.children %}
      {% for entry2 in entry.children %}
    • {{entry2.title}}
    • {% endfor %}
    {% endif %}
  • {% endfor %}
{% endfor %}