aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/tags.html
blob: e2fe903fe9f9134e71d9d82602bd4dc0ae6a3f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Tags{% endblock %}

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