summaryrefslogtreecommitdiffstats
path: root/templates/tags.html
blob: b795e5e10a0f508f2b4bc386b8a7ccb89cbdbec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'layout.html' %}

{% block content %}
<section>
	<h1>{{ title }}</h1>
	<ul id="tag-list">
	{% for tag in entries %}
	<li><a href="tag-{{ tag }}.html">{{ tag }}</a> ({{ entries[tag] }})</li>
	{% endfor %}
	</ul>
</section>
{% endblock %}