{% comment %} Dynamically generate list of links to all category pages {% endcomment %} {% assign pages_list = site.pages %} {% for node in pages_list %} {% if node.title != null %} {% if node.layout == "category" %} {{ node.title }} {% endif %} {% endif %} {% endfor %}