Skip to content

Instantly share code, notes, and snippets.

@onlyhavecans
Created September 26, 2012 22:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onlyhavecans/3790991 to your computer and use it in GitHub Desktop.
Save onlyhavecans/3790991 to your computer and use it in GitHub Desktop.
{% for category, articles in categories %}
<h2><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></h2>
<ul>
{% for article in articles %}
<li><a href="{{ SITEURL }}/{{ article.url }}">{{ article }}</a></li>
{% endfor %}
</ul>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment