diff --git a/theme/templates/index.html b/theme/templates/index.html
index 86db4eb..ed4a1a8 100644
--- a/theme/templates/index.html
+++ b/theme/templates/index.html
@@ -41,25 +41,34 @@
- {% for article in articles %}
+ {% for category, articles in categories %}
-
-
- {{ article.title }}
-
-
+ {% if category is 'notes' %}
-
- {{ article.content }}
-
+ {% for article in articles %}
- {% if not HIDE_DATE %}
-
- {% endif %}
+
+
+ {{ article.title }}
+
+
+
+ {{ article.content }}
+
+
+ {% if not HIDE_DATE %}
+
+ {% endif %}
+
+ {% endfor %}
+
+ {% endif %}
+
{% endfor %}
+