aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/tags.html
blob: 1d49d42d833fdb329c3b937424c1248397f552d4 (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}

{% block title %}{{ SITENAME }} - Tags{% endblock %}
{% block pagetitle %}Tags for {{ SITENAME }}{% endblock %}
{% block content %}
    {%- for tag, articles in tags|sort %}
        <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
    {% endfor %}
{% endblock %}