{% for collection in site.collections %} {% unless collection.label == "posts" %}
  • {%- assign key = collection.label | append: '.md' -%} {%- assign title_page = site.pages | where: 'name', key | first -%}

    {{ title_page.title }}

      {%- for c in collection.docs %}
    • {{ c.title }}
    • {% endfor -%}
  • {% endunless %} {% endfor %}