Created
July 28, 2015 17:36
-
-
Save Phlow/6ee7c58799fa704e7b32 to your computer and use it in GitHub Desktop.
Loop through all pages of all collections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% 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