From 50e09a11ea17a05e48887b605595c757919b9bd9 Mon Sep 17 00:00:00 2001 From: steven-y-e Date: Wed, 15 Sep 2021 13:42:27 -0400 Subject: [PATCH] init(blog): initialize new hugo site static site generator (built in golang) used to dynamically build a static website (for low spec hosts) --- blog/archetypes/default.md | 6 ++++++ blog/config.toml | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 blog/archetypes/default.md create mode 100644 blog/config.toml diff --git a/blog/archetypes/default.md b/blog/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/blog/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/blog/config.toml b/blog/config.toml new file mode 100644 index 0000000..1d7c819 --- /dev/null +++ b/blog/config.toml @@ -0,0 +1,3 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site'