summaryrefslogtreecommitdiff
path: root/theme/cccevents/templates/tags.html
blob: ed72f24ccbd01e7880e2e511a71b44bcec2f15c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

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

{% block content_title %}
                <h1>Tags for {{ SITENAME }}</h1>
{% endblock %}

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