aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill-en/templates/tags.html
blob: 1fd478c103fd1c887c9768ee0023483fc45a8690 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block content %}
<div class="blogItem">
<ul>
{% for tag, articles in tags %}
    <li>{{ tag }}</li>
{% endfor %}
</ul>
</div>
{% endblock %}