From d479a415276db0e03615397a3aad7f387a097089 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sun, 16 Mar 2025 20:32:06 -0400 Subject: [PATCH] initial commit --- README.md | 5 +++++ archetypes/default.md | 5 +++++ hugo.toml | 3 +++ 3 files changed, 13 insertions(+) create mode 100644 archetypes/default.md create mode 100644 hugo.toml diff --git a/README.md b/README.md index e69de29..6b407b9 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,5 @@ +This is the directory that my website lives in. + +There are two big directories: +1. Public - this is where all the public facing files live. +2. Private - This is for stuff that is is development. diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..7e568b8 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,3 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site'