nfc-web/web/nfc-theme/templates/categories.html
2023-04-30 14:08:32 +03: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 %}