wttf/theme/wttf_v1/templates/categories.html

9 lines
203 B
HTML
Raw Permalink Normal View History

2018-08-28 23:56:03 +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 %}