Created
July 24, 2013 10:23
-
-
Save SimonCropp/6069460 to your computer and use it in GitHub Desktop.
posts by category in jekyll
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
| {% for category in site.categories %} | |
| <b>{{category[0]}}</b> | |
| <ul> | |
| {% for post in category[1] %} | |
| <li><a href="{{ post.url }}">{{ post.title }}</a></li> | |
| {% endfor %} | |
| </ul> | |
| {% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment