{% if section.subsections %}
    {% if section.pages %} {% for page in section.pages %} {{ page.title }} {% endfor %} {% endif %} {% for subsec in section.subsections %} {% set h1 = get_section(path=subsec) %}
  • {{ h1.title }} {% if h1.pages %}
      {% for h2 in h1.pages %}
    • {{ h2.title }}
    • {% endfor %}
    {% endif %}
  • {% endfor %}
{% endif %}