From 6238448845b4c695602fa4fd22950ef453eff565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20G=C3=BCnther?= Date: Tue, 20 Jun 2023 14:16:45 +0200 Subject: [PATCH] hugo new site --- archetypes/default.md | 6 ++++++ hugo.toml | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 archetypes/default.md create mode 100644 hugo.toml diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..1d7c819 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,3 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site' -- 2.44.0