commit bb9174511eb23ef13634cc8d31acfff8fc0d228f Author: cpunch Date: Thu May 1 18:45:26 2025 -0500 inital commit 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'