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