{% for section in site.data.nav_docs %}

{{ section.title }}

{% if section.items %}
    {% for item in section.items %}
  • {{ item.title }} {% if item.subitems %}
      {% for subitem in item.subitems %}
    • {{ subitem.title }}
    • {% endfor %}
    {% endif %}
  • {% endfor %}
{% endif %} {% if section.headers %}
    {% for header in section.headers %}
  • {{ header.title }}
  • {% endfor %}
{% endif %}
{% endfor %}