diff --git a/_includes/layouts/base.njk b/_includes/layouts/base.njk index 1da4514..ecc974f 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 4dbf888..ebba6b3 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 b6b07a8..4ab0793 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