summaryrefslogtreecommitdiffstats
path: root/templates/blog/tags.html
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-10-17 01:34:04 +0200
committerGravatar Tom Willemsen2011-10-17 01:34:04 +0200
commit4b29603d79cc1f79c66786684f27ec9abfbaa825 (patch)
tree655c321b7ee3b0cc919ab3b7bf937b50fc13c69c /templates/blog/tags.html
downloaddotfiles-4b29603d79cc1f79c66786684f27ec9abfbaa825.tar.gz
dotfiles-4b29603d79cc1f79c66786684f27ec9abfbaa825.zip
Initial commit
Diffstat (limited to 'templates/blog/tags.html')
-rw-r--r--templates/blog/tags.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/blog/tags.html b/templates/blog/tags.html
new file mode 100644
index 0000000..a180634
--- /dev/null
+++ b/templates/blog/tags.html
@@ -0,0 +1,19 @@
+<!-- -*- 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 %}