initial import
diff --git a/templates/categories.html b/templates/categories.html
new file mode 100644
index 0000000..c30153d
--- /dev/null
+++ b/templates/categories.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block title %}{{ SITENAME }} - Categories{% endblock %}
+{% block content %}
+{% set custom_header = "Categories" %}
+{% include "header.html" %}
+<dl>
+  <ul>
+  {% for category, articles in categories %}
+    <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
+  {% endfor %}
+  </ul>
+</dl>
+{% endblock %}