aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/tags.html
blob: 3ace8d64fdc4607cad8863e6f00a833c5f8b4b70 (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Tags{% endblock %}
{% block content %}
<ul>
{% for tag, articles in tags|sort %}
    <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endblock %}