commit 738a7ff9643826c0edd212e11e2e430ba2ffe29f Author: Phil Bajsicki Date: Tue Sep 24 23:49:00 2024 +0200 First. 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