Skip to content

Instantly share code, notes, and snippets.

@SimonCropp
Created July 24, 2013 10:23
Show Gist options
  • Select an option

  • Save SimonCropp/6069460 to your computer and use it in GitHub Desktop.

Select an option

Save SimonCropp/6069460 to your computer and use it in GitHub Desktop.
posts by category in jekyll
{% 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