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

{{ section.title }}

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

{{ section.title }}

    {% for item in section.items %}
  • {{ item.title }}
  • {% endfor %}
{% endfor %}