diff --git a/_includes/header.html b/_includes/header.html
index f9c1774..f07cfff 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -18,6 +18,9 @@
+
diff --git a/checkins.html b/checkins.html
new file mode 100644
index 0000000..83e650a
--- /dev/null
+++ b/checkins.html
@@ -0,0 +1,54 @@
+---
+layout: default
+---
+
+
+
I have had beers on {{ site.data.checkins_by_day | size }} different days
+
+
+
+ {% assign title = site.data.beers %}
+
+
+
+
+
+ Year |
+ Month |
+ Day |
+ Checkins |
+ Unique checkins |
+
+
+
+ {% for checkin in site.data.checkins_by_day %}
+
+
+ {{ checkin.year }}
+ |
+
+ {{ checkin.month }}
+ |
+
+ {{ checkin.day }}
+ |
+
+ {{ checkin.checkins }}
+ |
+
+ {{ checkin.unique_checkins }}
+ |
+
+ {% endfor %}
+
+
+
+
+
+