diff --git a/_includes/layouts/base.njk b/_includes/layouts/base.njk
index 1da451414f..ecc974f066 100644
--- a/_includes/layouts/base.njk
+++ b/_includes/layouts/base.njk
@@ -28,7 +28,7 @@
This is an Eleventy project created from the eleventy-base-blog repo.
- {{ layoutContent | safe }}
+ {{ content | safe }}
diff --git a/_includes/layouts/home.njk b/_includes/layouts/home.njk
index 4dbf888ce0..ebba6b3faf 100644
--- a/_includes/layouts/home.njk
+++ b/_includes/layouts/home.njk
@@ -2,4 +2,4 @@
layout: layouts/base.njk
templateClass: tmpl-home
---
-{{ layoutContent | safe }}
+{{ content | safe }}
diff --git a/_includes/layouts/post.njk b/_includes/layouts/post.njk
index b6b07a81ce..4ab0793ede 100644
--- a/_includes/layouts/post.njk
+++ b/_includes/layouts/post.njk
@@ -4,6 +4,6 @@ templateClass: tmpl-post
---
{{ title }}
-{{ layoutContent | safe }}
+{{ content | safe }}
-← Home
\ No newline at end of file
+← Home