wttf/theme/simple/templates/categories.html

9 lines
203 B
HTML
Raw Normal View History

2018-05-04 12:22:51 +02:00
{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}