aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read
diff options
context:
space:
mode:
Diffstat (limited to 'Just-Read')
-rw-r--r--Just-Read/templates/tags.html18
1 files changed, 17 insertions, 1 deletions
diff --git a/Just-Read/templates/tags.html b/Just-Read/templates/tags.html
index 6b889e8..eed50d2 100644
--- a/Just-Read/templates/tags.html
+++ b/Just-Read/templates/tags.html
@@ -1 +1,17 @@
-<!--must list all the tags. Can be a tag cloud.--> \ No newline at end of file
+{% extends "base.html" %}
+{% block title %}{{ SITENAME }}{% endblock %}
+
+{% block content %}
+<div role="main" class="content clearfix">
+<div class="wrapper main">
+ <h2>Tags</h2>
+
+ <ul class="tagcloud">
+ {% for tag in tag_cloud %}
+ <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/tag/{{ tag.0 }}.html">{{ tag.0 }}</a></li>
+ {% endfor %}
+ </ul>
+
+</div>
+</div>
+{% endblock %} \ No newline at end of file