From 4a58950a446e6bd09cb8debe1319bb4febbb7328 Mon Sep 17 00:00:00 2001 From: Spedon Date: Thu, 9 Mar 2023 12:00:13 +0800 Subject: [PATCH] example site setup --- exampleSite/config.toml | 5 +++++ exampleSite/content/images/index.md | 4 ++++ layouts/404.html | 0 3 files changed, 9 insertions(+) create mode 100644 exampleSite/config.toml create mode 100644 exampleSite/content/images/index.md delete mode 100644 layouts/404.html diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..c44f939 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,5 @@ +baseURL = 'https://www.example.com/' +title = 'My New Hugo Site' +themesdir = '../..' +theme = 'Bridget' +disableKinds = ["section", "taxonomy", "term"] \ No newline at end of file diff --git a/exampleSite/content/images/index.md b/exampleSite/content/images/index.md new file mode 100644 index 0000000..b128c0a --- /dev/null +++ b/exampleSite/content/images/index.md @@ -0,0 +1,4 @@ +--- +title: The Gallery +headless: true +--- diff --git a/layouts/404.html b/layouts/404.html deleted file mode 100644 index e69de29..0000000