diff --git a/archive.html b/archive.html
new file mode 100644
index 0000000..add9520
--- /dev/null
+++ b/archive.html
@@ -0,0 +1,22 @@
+---
+layout: default
+---
+
+
+ This year's posts
+ {%for post in site.posts %}
+ {% unless post.next %}
+
+ {% else %}
+ {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
+ {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
+ {% if year != nyear %}
+
+ {{ post.date | date: '%Y' }}
+
+ {% endif %}
+ {% endunless %}
+ - - {{ post.title }}
+ {% endfor %}
+
+