Skip to content

Instantly share code, notes, and snippets.

@yongqianme
Last active August 29, 2015 14:15
Show Gist options
  • Save yongqianme/be92b28ee49d1eb370ec to your computer and use it in GitHub Desktop.
Save yongqianme/be92b28ee49d1eb370ec to your computer and use it in GitHub Desktop.
Jekylllistallcatergoriespost
{% for category in site.categories %}
<li>{{ category | first }}({{category | last | size}})</h3>
<ul>
{% for posts in category %}
{% for post in posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% endfor %}
</ul>
</li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment