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