diff --git a/_includes/layouts/base.njk b/_includes/layouts/base.njk index ee7dbfd..3f97269 100644 --- a/_includes/layouts/base.njk +++ b/_includes/layouts/base.njk @@ -19,6 +19,15 @@ +
+
    +
  1. Edit the _data/metadata.json with your blog’s information.
  2. +
  3. (Optional) Edit .eleventy.js with your configuration preferences.
  4. +
  5. Delete this message from _includes/base.njk.
  6. +
+

This is an Eleventy project created from the eleventy-base-blog repo.

+
+ {{ layoutContent | safe }} diff --git a/_includes/layouts/post.njk b/_includes/layouts/post.njk index 23dd549..f798067 100644 --- a/_includes/layouts/post.njk +++ b/_includes/layouts/post.njk @@ -5,3 +5,5 @@ templateClass: tmpl-post

{{ title }}

{{ layoutContent | safe }} + +

🔙 Home

\ No newline at end of file diff --git a/index.njk b/index.njk index 0b1a3a3..3312d9b 100644 --- a/index.njk +++ b/index.njk @@ -4,15 +4,6 @@ tags: nav navtitle: Home --- -
-
    -
  1. Edit the _data/metadata.json with your blog’s information.
  2. -
  3. (Optional) Edit .eleventy.js with your configuration preferences.
  4. -
  5. Delete this message from index.njk.
  6. -
-

This is an Eleventy project created from the eleventy-base-blog repo.

-
- {% set postslist = collections.posts %} {% include "postslist.njk" %}