Skip to content

Instantly share code, notes, and snippets.

@Phlow
Created December 26, 2015 13:20
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Phlow/d116d6bb750bf0139ade to your computer and use it in GitHub Desktop.
Save Phlow/d116d6bb750bf0139ade to your computer and use it in GitHub Desktop.
Loop through all collections of a Jekyll website
{% 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