euer_blog/pelican-themes/gum/templates/categories.html
2014-05-21 18:26:18 +02:00

9 lines
203 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}