diff --git a/src/404.njk b/src/404.njk index e69de29..b037066 100644 --- a/src/404.njk +++ b/src/404.njk @@ -0,0 +1,4 @@ +--- +layout: layouts/base +permalink: 404.html +--- \ No newline at end of file diff --git a/src/500.njk b/src/500.njk index e69de29..e86f854 100644 --- a/src/500.njk +++ b/src/500.njk @@ -0,0 +1,4 @@ +--- +layout: layouts/base +permalink: 500.html +--- \ No newline at end of file diff --git a/src/about.njk b/src/about.njk deleted file mode 100644 index e69de29..0000000 diff --git a/src/index.njk b/src/index.njk index 88f00ef..70139d9 100644 --- a/src/index.njk +++ b/src/index.njk @@ -1,3 +1,3 @@ --- -layout: base +layout: layouts/base --- \ No newline at end of file diff --git a/src/pages/about.njk b/src/pages/about.njk index ff97b7c..07e10e8 100644 --- a/src/pages/about.njk +++ b/src/pages/about.njk @@ -1,3 +1,4 @@ --- -layout: page ---- \ No newline at end of file +layout: layouts/base +permalink: /about/ +--- diff --git a/src/posts/basic-post.md b/src/posts/basic-post.md index 401d1b9..d099296 100644 --- a/src/posts/basic-post.md +++ b/src/posts/basic-post.md @@ -1,3 +1,7 @@ --- -layout: post +title: Basic Post +date: 2021-09-05 +layout: layouts/post +tags: + - Basic --- \ No newline at end of file diff --git a/src/robots.njk b/src/robots.njk index ca60a79..699a8e5 100644 --- a/src/robots.njk +++ b/src/robots.njk @@ -1,3 +1,4 @@ --- permalink: robots.txt +eleventyExcludeFromCollections: true --- \ No newline at end of file diff --git a/src/sitemap.njk b/src/sitemap.njk index 37f8a36..302fdb0 100644 --- a/src/sitemap.njk +++ b/src/sitemap.njk @@ -1,3 +1,4 @@ --- permalink: sitemap.xml +eleventyExcludeFromCollections: true --- \ No newline at end of file diff --git a/src/tags.njk b/src/tags.njk index e69de29..70139d9 100644 --- a/src/tags.njk +++ b/src/tags.njk @@ -0,0 +1,3 @@ +--- +layout: layouts/base +--- \ No newline at end of file