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

{% block title %}{{ SITENAME }} - Tags{% endblock %}

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