From 03ec17230cb0180d5b89d864f2482f4beff01fe5 Mon Sep 17 00:00:00 2001 From: Balakrishnan Balasubramanian Date: Fri, 19 May 2023 12:17:03 -0400 Subject: [PATCH] op of hugo new site hugo -f yaml --- hugo/archetypes/default.md | 6 ++++++ hugo/config.yaml | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 hugo/archetypes/default.md create mode 100644 hugo/config.yaml diff --git a/hugo/archetypes/default.md b/hugo/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/hugo/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/hugo/config.yaml b/hugo/config.yaml new file mode 100644 index 0000000..d53b44c --- /dev/null +++ b/hugo/config.yaml @@ -0,0 +1,3 @@ +baseURL: http://example.org/ +languageCode: en-us +title: My New Hugo Site