blog/themes/waterspill-en/templates/categories.html

19 lines
584 B
HTML
Raw Permalink Normal View History

2023-07-20 19:34:24 +00:00
{% 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 %}