This commit is contained in:
Phil Bajsicki 2024-09-24 23:49:00 +02:00
commit 738a7ff964
4 changed files with 22 additions and 0 deletions

5
archetypes/default.md Normal file
View file

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

5
go.mod Normal file
View file

@ -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

2
go.sum Normal file
View file

@ -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=

10
hugo.toml Normal file
View file

@ -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