blog/themes/waterspill-en/templates/categories.html
2023-07-20 15:34:24 -04:00

19 lines
584 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="blogItem">
{% if articles %}
{% for article in articles %}
{% if loop.index == 1 %}
<ul>
{% for category, articles in categories %}
<li>{{ category }}</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
{% endif %}
</div>
{% endblock %}