diff --git a/_layouts/home.html b/_layouts/home.html
index 8a49047ecae9..c3a9976842ac 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -12,8 +12,10 @@
{{ site.data.ui-text[site.locale].recent_posts | d
{% assign posts = site.posts %}
{% endif %}
-{% for post in posts %}
- {% include archive-single.html %}
-{% endfor %}
+
+ {% for post in posts %}
+ {% include archive-single.html type=page.entries_layout %}
+ {% endfor %}
+
{% include paginator.html %}
diff --git a/_sass/minimal-mistakes/_archive.scss b/_sass/minimal-mistakes/_archive.scss
index 12fbf654214e..3df299614b00 100644
--- a/_sass/minimal-mistakes/_archive.scss
+++ b/_sass/minimal-mistakes/_archive.scss
@@ -32,7 +32,7 @@
}
.archive__subtitle {
- margin: 1.414em 0 0;
+ margin: 1.414em 0 0.5em;
padding-bottom: 0.5em;
font-size: $type-size-5;
color: $muted-text-color;