From 738a7ff9643826c0edd212e11e2e430ba2ffe29f Mon Sep 17 00:00:00 2001 From: Phil Bajsicki Date: Tue, 24 Sep 2024 23:49:00 +0200 Subject: [PATCH] First. --- archetypes/default.md | 5 +++++ go.mod | 5 +++++ go.sum | 2 ++ hugo.toml | 10 ++++++++++ 4 files changed, 22 insertions(+) create mode 100644 archetypes/default.md create mode 100644 go.mod create mode 100644 go.sum create mode 100644 hugo.toml diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..7cbf855 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module git.bajsicki.com/phil/bajsicki.com + +go 1.23.1 + +require github.com/lukeorth/poison v0.0.0-20240905132908-07485e85f024 // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..d4cf116 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/lukeorth/poison v0.0.0-20240905132908-07485e85f024 h1:wJgYgCnf0vPFzcLWOTroGM23eq3iONBhAKMyAPMvSz8= +github.com/lukeorth/poison v0.0.0-20240905132908-07485e85f024/go.mod h1:fYVpevZiA79ef8Q1DkUgg/MF53oy4mKFSFTnK+EeiO0= diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..1a2597f --- /dev/null +++ b/hugo.toml @@ -0,0 +1,10 @@ +baseURL = 'https://bajsicki.com' +languageCode = 'en-us' +title = 'phil@bajsicki:~$' + +[module] + [[module.imports]] + path = "github.com/lukeorth/poison" + +[markup.goldmark.renderer] + unsafe = true