From bb9174511eb23ef13634cc8d31acfff8fc0d228f Mon Sep 17 00:00:00 2001 From: cpunch Date: Thu, 1 May 2025 18:45:26 -0500 Subject: [PATCH] inital commit --- archetypes/default.md | 5 +++++ go.mod | 3 +++ hugo.toml | 3 +++ 3 files changed, 11 insertions(+) create mode 100644 archetypes/default.md create mode 100644 go.mod create mode 100644 hugo.toml 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/go.mod b/go.mod new file mode 100644 index 0000000..25ddae9 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module my-docs-site + +go 1.24.2 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'