{% for toc_item in toc %}
  • {{ toc_item.title }}
  • {% for toc_item in toc_item.children %}
  • {{ toc_item.title }} {% if toc_item.children %}
      {% for toc_item in toc_item.children %}
    • {{ toc_item.title }}
    • {% endfor %}
    {% endif %}
  • {% endfor %} {% endfor %}