blog/themes/pelican-striped-html5up/templates/categories.html
Marc Beninca 3b5262ab5e themes
2021-11-08 23:46:35 +01:00

8 lines
203 B
HTML

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