{% 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.meta.draft %}
  • {% if chapter.children %}
    {{ chapter.content.meta.title }}
      {% if chapter.children %} {% for doc in chapter.children %} {% if mode == "draft" or not doc.content.meta.draft %}
    • {{ loop.index }}. {{ doc.content.meta.title | safe }}
    • {% endif %} {% endfor %} {% endif %}
    {% else %} {{ chapter.content.meta.title }} {% endif %}
  • {% endif %} {% endfor %} {% endif %} {% endfor %}