first version of the new website
[markerbeacon.git] / themes / notmyidea / templates / tags.html
diff --git a/themes/notmyidea/templates/tags.html b/themes/notmyidea/templates/tags.html
new file mode 100644 (file)
index 0000000..fb09955
--- /dev/null
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Tags{% endblock %}
+
+{% block content %}
+
+<section id="content" class="body">
+    <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 %}