{% for part in project.children %} {% if part.children and current_path[1] == part.id %}
    {% for chapter in part.children %} {% if mode == "draft" or not chapter.content.metadata.draft %}
  • {{ loop.index }}. {{ chapter.content.metadata.title }}
      {% if chapter.children %} {% for doc in chapter.children %} {% if mode == "draft" or not doc.content.metadata.draft %}
    • {{ loop.index }}. {{ doc.content.metadata.title | safe }}
    • {% endif %} {% endfor %} {% endif %} {% endif %}
  • {% endfor %}
{% endif %} {% endfor %}