{% for part in project.content %} {% if part.chapters and current_part == part.id %}
    {% for chapter in part.chapters %} {% if mode == "draft" or not chapter.index.content.metadata.draft %}
  • {{ loop.index }}. {{ chapter.index.content.metadata.title }}
      {% if chapter.documents %} {% for doc in chapter.documents %} {% if mode == "draft" or not doc.content.metadata.draft %}
    • {{ loop.index }}. {{ doc.content.metadata.title | safe }}
    • {% endif %} {% endfor %} {% endif %} {% endif %}
  • {% endfor %}
{% endif %} {% endfor %}