{% assign sorted_collections = site.collections | sort: "position_number" %} {% for collection in sorted_collections %} {% if collection.label != "posts" %}
{{ collection.title }}
    {% assign sorted_docs = collection.docs | sort: "position_number" %} {% for doc in sorted_docs %}
  • {{ doc.title }} {% if doc.type %}{% endif %}
  • {% endfor %}
{% endif %} {% endfor %}