theme/templates/tags.html

changeset 36
9507107a1133
equal deleted inserted replaced
35:bb011397a99c 36:9507107a1133
1 {% extends "base.html" %}
2
3 {% block title %}{{ SITENAME }} - Tags{% endblock %}
4
5 {% block content %}
6 <h1>Tags for {{ SITENAME }}</h1>
7 <ul class="tag-list">
8 {%- for tag, articles in tags|sort %}
9 <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
10 {% endfor %}
11 </ul>
12 {% endblock %}
13
14 {% block footer %}
15 {% include 'credits.html' %}
16 {% endblock %}

mercurial