blog/themes/pelican-striped-html5up/templates/categories.html

9 lines
203 B
HTML
Raw Normal View History

2020-04-11 09:23:56 +00:00
{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
2021-11-08 22:46:35 +00:00
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
2020-04-11 09:23:56 +00:00
{% endfor %}
</ul>
{% endblock %}