aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/tags.html
blob: db1c520cd96b4c5489f8660b66d1ee0a4703f543 (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 %}