Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save lesssummer/1bfec30988166c82e8aa943d657dfb29 to your computer and use it in GitHub Desktop.

Select an option

Save lesssummer/1bfec30988166c82e8aa943d657dfb29 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