aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/tags.html
blob: df6f55f847352a54f777cc954bac85efd42eb935 (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 }}</li>
{% endfor %}
</ul>
{% endblock %}