aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/tags.html
blob: 94a5fc376f450b3069d7e18808e4d9138b8c86f1 (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|sort %}
    <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endblock %}