summaryrefslogtreecommitdiffstats
path: root/templates/blog/tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/blog/tags.html')
-rw-r--r--templates/blog/tags.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/templates/blog/tags.html b/templates/blog/tags.html
deleted file mode 100644
index a180634..0000000
--- a/templates/blog/tags.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!-- -*- Mode: django-html-mumamo -*- -->
-
-{% extends "blog/base.html" %}
-
-{% block subtitle %}
- blog/tags
-{% endblock %}
-
-{% block content %}
- <ul>
- {% for tag in taglist %}
- <li>
- <a href="/blog/tag/{{ tag.name }}">{{ tag.name }}</a>
- </li>
- {% empty %}
- Sorry, no tags here.
- {% endfor %}
- </ul>
-{% endblock %}