{% for section in site.data.navigation %}
{% if section.file %} {% endif %} {{ section.title }} {% if section.file %} {% endif %}
    {% for item in section.items %}
  • {% if item.file %} {% endif %} {{ item.title }} {% if item.file %} {% endif %} {% if item.subitems %}
      {% for subitem in item.subitems %}
    • {{ subitem.title }}
    • {% endfor %}
    {% endif %}
  • {% endfor %}
{% endfor %}