varia.website/themes/catcet/templates/categories.html

9 lines
212 B
HTML
Raw Normal View History

2017-07-06 14:28:42 +02:00
{% extends "base.html" %}
{% block content %}
<div id="categories">
{% for category, articles in categories %}
<a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a>
{% endfor %}
</div>
{% endblock %}