{% assign collections = site.collections | sort: 'order' %} {% for collection in collections %} {% if collection.docs %}
  • {{ collection.title }}

  • {% for col_page in collection.docs %}
  • {{ col_page.label| default: col_page.title | escape }}
  • {% endfor %} {% endif %} {% endfor %}