{% for part in config.content %}
    {% if part.id == current_part %}
  • {{part.index.content.title}}
  • {% if part.chapters %} {% for chapter in part.chapters %} {% if current_chapter == chapter.id %}
  • {{ chapter.index.content.title }}
  • {% for doc in chapter.documents %} {% if current_doc == doc.id %}
  • {{doc.content.title}}
  • {% endif %} {% endfor %} {% endif %} {% endfor %} {% endif %} {% endif %}
{% endfor %}