{% for entry in site.data.top-nav %} {% if entry.children %}
  • {{entry.label}}
      {% for subsection in entry.children %}
    • {{subsection.label}}
    • {% endfor %}
  • {% else %}
  • {{entry.label}}
  • {% endif %} {% endfor %}