blag/theme-fred/templates/categories.html

11 lines
265 B
HTML
Raw Normal View History

2016-08-03 02:36:43 -04:00
{% extends "base.html" %}
{% block content %}
2023-03-24 12:41:18 -04:00
<ul>
{% for category, articles in categories %}
<li>
<a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a>
</li>
{% endfor %}
</ul>
2016-08-03 02:36:43 -04:00
{% endblock %}