Skip to content

Instantly share code, notes, and snippets.

@Phlow
Created July 28, 2015 17:36
Show Gist options
  • Select an option

  • Save Phlow/6ee7c58799fa704e7b32 to your computer and use it in GitHub Desktop.

Select an option

Save Phlow/6ee7c58799fa704e7b32 to your computer and use it in GitHub Desktop.
Loop through all pages of all collections
{% comment %}
#
# Loop through all pages of all collections
#
{% endcomment %}
{% for c in site.collections %}
{% assign docs=c[1].docs %}
{% for doc in docs %}
// do something
{% endfor %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment