From 306ae9708bc7363f104c9a23de2c7015b212fab6 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Thu, 2 Dec 2021 19:08:35 +0000 Subject: [PATCH] trying to get podcast pages working --- config.toml | 2 +- content/shownote/stub-testing-page.md | 11 +++++++++++ {themes/blackburn/layouts => layouts}/404.html | 0 {themes/blackburn/layouts => layouts}/index.html | 0 4 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 content/shownote/stub-testing-page.md rename {themes/blackburn/layouts => layouts}/404.html (100%) rename {themes/blackburn/layouts => layouts}/index.html (100%) diff --git a/config.toml b/config.toml index c08eb7e..28bd30e 100644 --- a/config.toml +++ b/config.toml @@ -58,7 +58,7 @@ enableGitInfo = true identifier = "reading" url = "/reading/" [[menu.main]] - name = "Podcasts" + name = "Shownotes" pre = "" weight = 4 identifier = "shownote" diff --git a/content/shownote/stub-testing-page.md b/content/shownote/stub-testing-page.md new file mode 100644 index 0000000..e4933df --- /dev/null +++ b/content/shownote/stub-testing-page.md @@ -0,0 +1,11 @@ +--- +title: "Stub Testing Page" +date: 2021-12-02T19:06:27Z +series: "testing" +image: /img/school-of-athens.jpg +draft: true +--- + +# Simple page to test new section + +This is a test. diff --git a/themes/blackburn/layouts/404.html b/layouts/404.html similarity index 100% rename from themes/blackburn/layouts/404.html rename to layouts/404.html diff --git a/themes/blackburn/layouts/index.html b/layouts/index.html similarity index 100% rename from themes/blackburn/layouts/index.html rename to layouts/index.html