diff --git a/blog.html b/blog.html
index 3b88c99..d9531a9 100644
--- a/blog.html
+++ b/blog.html
@@ -3,6 +3,19 @@
title: Blog
---
+
+ {% for blost in site.posts %}
+ {% capture description %}{{ blost.description | slice: 0, 100 }}{% endcapture %}
+ {% if description != '' %}
+ {% capture description %}{{ description }}...{% endcapture %}
+ {% endif %}
+ {% unless title == 'Tech Team Week Notes' %}
+ {% capture box-colour %}{% cycle 1, 4, 7, 10, 2, 5, 8, 11, 3, 9, 12 %}{% endcapture %}
+ {% include bright-box.html url = blost.url heading = blost.title subhead = description colour = box-colour %}
+ {% endunless %}
+ {% endfor %}
+
+
{% for blost in site.posts %}
{% capture title %}{{ blost.title | slice: 0, 20 }}{% endcapture %}
@@ -18,3 +31,7 @@
{% endunless %}
{% endfor %}
+
+