aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/templates/tags.html
blob: d481bc3cc777f3c03426f9c72e9bfbca1959f16b (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.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endblock %}