first version of the new website
[markerbeacon.git] / themes / notmyidea / templates / tags.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ SITENAME }} - Tags{% endblock %}
4
5 {% block content %}
6
7 <section id="content" class="body">
8     <h1>Tags for {{ SITENAME }}</h1>
9     <ul>
10     {% for tag, articles in tags|sort %}
11         <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
12     {% endfor %}
13     </ul>
14 </section>
15
16 {% endblock %}