blog/theme/darkstrap/templates/categories.html
kleph e10a67428d Initial import
- first content
- modded theme, based on wraithani'thme, which is based on bootstrap
2013-07-05 00:07:25 +02:00

8 lines
186 B
HTML

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