aboutsummaryrefslogtreecommitdiffstats
path: root/mnmlist/templates/tags.html
blob: a6011a043a7f187aeb0028272cba53404de31d63 (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% block content %}
<ul>
{% for tag, articles in tags %}
    <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endblock %}