{% for nav_item in nav %} {% if not nav_item.children %}
  • {{ nav_item.title }}
  • {% else %}
    • {% for nav_children in nav_item.children %}
    • {{nav_children.title}}
    • {% endfor %}
  • {% endif %} {% endfor %}
{% if page.file and config.repo_url and config.edit_uri and config.theme.afficher_bouton_editer %} {{ config.theme.libelle_bouton_editer }} {% endif %}