Last active
December 18, 2015 03:09
-
-
Save akdetrick/5716438 to your computer and use it in GitHub Desktop.
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
| --- | |
| title: test | |
| layout: main | |
| --- | |
| <!-- declare order of pages by id --> | |
| {% assign sassquatch_section_names = "index,test" | split: "," %} | |
| <!-- loop through the ids --> | |
| <h3>Pages by title in the order we declared them in sassquatch_section_names</h3> | |
| <ul> | |
| {% for pagetitle in sassquatch_section_names %} | |
| {% for page in site.pages %} | |
| {% if page.title == pagetitle %} | |
| <li>{{ page.title }}</li> | |
| {% endif %} | |
| {% endfor %} | |
| {% endfor %} | |
| </ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment