From c7679dad269c769de1a2ce407dd72dee6242fdae Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Fri, 9 Feb 2024 15:05:54 -0800 Subject: [PATCH] feat: add missing pages --- src/content/pages/about.html | 7 +++++++ src/content/pages/blogroll.html | 7 +++++++ src/content/pages/books.html | 2 +- src/content/pages/catalogue.html | 7 +++++++ src/content/pages/colophon.html | 7 +++++++ src/content/pages/index.html | 2 +- src/content/pages/now.html | 7 +++++++ src/content/pages/posts.html | 2 +- src/content/pages/tag.html | 6 +++--- src/content/pages/tags.html | 4 ++-- src/content/pages/uses.html | 7 +++++++ 11 files changed, 50 insertions(+), 8 deletions(-) create mode 100644 src/content/pages/about.html create mode 100644 src/content/pages/blogroll.html create mode 100644 src/content/pages/catalogue.html create mode 100644 src/content/pages/colophon.html create mode 100644 src/content/pages/now.html create mode 100644 src/content/pages/uses.html diff --git a/src/content/pages/about.html b/src/content/pages/about.html new file mode 100644 index 0000000..8e51bd4 --- /dev/null +++ b/src/content/pages/about.html @@ -0,0 +1,7 @@ +--- +layout: base +permalink: /about/index.html +title: About +--- + +The about page. diff --git a/src/content/pages/blogroll.html b/src/content/pages/blogroll.html new file mode 100644 index 0000000..4379d9c --- /dev/null +++ b/src/content/pages/blogroll.html @@ -0,0 +1,7 @@ +--- +layout: base +permalink: /blogroll/index.html +title: Blogroll +--- + +Coming soon diff --git a/src/content/pages/books.html b/src/content/pages/books.html index eebe69f..4e42e79 100644 --- a/src/content/pages/books.html +++ b/src/content/pages/books.html @@ -1,6 +1,6 @@ --- +layout: base permalink: /books/index.html -layout: "base" --- Books will eventually go here. diff --git a/src/content/pages/catalogue.html b/src/content/pages/catalogue.html new file mode 100644 index 0000000..7f11a1c --- /dev/null +++ b/src/content/pages/catalogue.html @@ -0,0 +1,7 @@ +--- +layout: base +permalink: /catalogue/index.html +title: Catalogue +--- + +Here be the catalogue page. diff --git a/src/content/pages/colophon.html b/src/content/pages/colophon.html new file mode 100644 index 0000000..45d94b6 --- /dev/null +++ b/src/content/pages/colophon.html @@ -0,0 +1,7 @@ +--- +layout: base +permalink: /colophon/index.html +title: Colophon +--- + +Coming soon diff --git a/src/content/pages/index.html b/src/content/pages/index.html index cb8c548..a6c1a7a 100644 --- a/src/content/pages/index.html +++ b/src/content/pages/index.html @@ -1,5 +1,5 @@ --- -layout: "base" +layout: base permalink: / --- diff --git a/src/content/pages/now.html b/src/content/pages/now.html new file mode 100644 index 0000000..79f71cb --- /dev/null +++ b/src/content/pages/now.html @@ -0,0 +1,7 @@ +--- +layout: base +permalink: /now/index.html +title: /now +--- + +The /now page. diff --git a/src/content/pages/posts.html b/src/content/pages/posts.html index 7bab472..345c5a3 100644 --- a/src/content/pages/posts.html +++ b/src/content/pages/posts.html @@ -1,6 +1,6 @@ --- permalink: /posts/index.html -layout: "base" +layout: base title: Posts --- diff --git a/src/content/pages/tag.html b/src/content/pages/tag.html index 8e552c9..d63ffcd 100644 --- a/src/content/pages/tag.html +++ b/src/content/pages/tag.html @@ -1,12 +1,12 @@ --- +eleventyComputed: + title: "Tag: {{ tag }}" +layout: base pagination: data: collections.postsByCategory size: 1 alias: tag permalink: /tag/{{ tag }}/index.html -layout: "base" -eleventyComputed: - title: "Tag: {{ tag }}" --- {% set posts = collections.postsByCategory[tag] %} diff --git a/src/content/pages/tags.html b/src/content/pages/tags.html index 167b160..d025297 100644 --- a/src/content/pages/tags.html +++ b/src/content/pages/tags.html @@ -1,7 +1,7 @@ --- -title: All tags -permalink: /tags/index.html layout: base +permalink: /tags/index.html +title: All tags ---
diff --git a/src/content/pages/uses.html b/src/content/pages/uses.html new file mode 100644 index 0000000..6a21fbd --- /dev/null +++ b/src/content/pages/uses.html @@ -0,0 +1,7 @@ +--- +layout: base +permalink: /uses/index.html +title: /uses +--- + +The /uses page.