initial import
diff --git a/templates/archives.html b/templates/archives.html
new file mode 100644
index 0000000..a23994b
--- /dev/null
+++ b/templates/archives.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+{% block title %}{{ SITENAME }} - Archives{% endblock %}
+{% block content %}
+{% set custom_header = "Archives" %}
+{% include "header.html" %}
+<dl>
+{% for article in dates %}
+  <dt>{{ article.locale_date }}</dt>
+  <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+{% endfor %}
+</dl>
+{% endblock %}