aboutsummaryrefslogtreecommitdiffstats
path: root/backdrop/templates/tags.html
blob: 348399044f7766f541e96de8899fd23c00d89b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% block title %}Tags{%endblock%}

{% block content %}
<div class="row">
    <div class="small-12 columns article">
        <h2>Tags</h2>
        <section>
            <p class='tag-page'>
            {% for tag, articles in tags|sort %}
                <a href="{{ SITEURL }}/{{ tag.url }}"><span class="label">{{ tag }}&nbsp;&nbsp;<span class="label round secondary">{{ articles|count }}</span></span></a>
            {% endfor %}
            </p>    
        </section>
    </div>
</div>
{% endblock content %}