diff --git a/templates/header_slim.html b/templates/header_slim.html
index 28418d1..320859f 100644
--- a/templates/header_slim.html
+++ b/templates/header_slim.html
@@ -57,6 +57,18 @@
{{ sub_title }}
+ {% if sub_title == 'Blog' %}
+ {% set children = site.get(href).children %}
+ {% for child in children %}
+ {% if loop.index <= 3 %}
+
+
+ {{ child.title }}
+
+
+ {% endif %}
+ {% endfor %}
+ {% endif %}
{% endfor %}
{% endif %}
diff --git a/templates/header_with_logo.html b/templates/header_with_logo.html
index 658ed19..137f3ee 100644
--- a/templates/header_with_logo.html
+++ b/templates/header_with_logo.html
@@ -57,6 +57,18 @@
{{ sub_title }}
+ {% if sub_title == 'Blog' %}
+ {% set children = site.get(href).children %}
+ {% for child in children %}
+ {% if loop.index <= 3 %}
+
+
+ {{ child.title }}
+
+
+ {% endif %}
+ {% endfor %}
+ {% endif %}
{% endfor %}
{% endif %}