diff --git a/www/.layout.gohtml b/www/.layout.gohtml
index a9b21a5..24e7bc0 100644
--- a/www/.layout.gohtml
+++ b/www/.layout.gohtml
@@ -82,8 +82,8 @@
» Contact Me
- Channels
- TBD
+ Blog Tags
+ {{ RenderTags .Request false }}
Creativity
diff --git a/www/blog/categories.inc.html b/www/blog/categories.inc.html
deleted file mode 100644
index f6ff7bf..0000000
--- a/www/blog/categories.inc.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{# Custom category list for kirsle.net -based design #}
-
-
-{% if has_small %}
-
-
- {% for tag in tags %}
- {% if tag["small"] %}
- - » {{ tag['category'] }}
- ({{ tag['count'] }})
- {% endif %}
- {% endfor %}
-
-
-
-{% endif %}
diff --git a/www/blog/tags.partial.gohtml b/www/blog/tags.partial.gohtml
new file mode 100644
index 0000000..3b7b925
--- /dev/null
+++ b/www/blog/tags.partial.gohtml
@@ -0,0 +1,20 @@
+{{ if .IndexView }}
+ Sorted by most frequently used:
+
+
+ {{ range .Tags }}
+ - {{ .Name }} ({{ .Count }})
+ {{ end }}
+
+{{ else }}
+
+{{ end }}