Have got site creation working

This commit is contained in:
Leon Mika 2025-01-27 09:26:15 +11:00
parent 4ecc12f035
commit f8e7ea482b
15 changed files with 281 additions and 11 deletions

View file

@ -0,0 +1,5 @@
baseURL = {{.Site.URL | printf "%q"}}
languageCode = 'en-us'
title = {{.Site.Title | printf "%q"}}
theme = {{.Site.Theme | printf "%q"}}

View file

@ -0,0 +1,6 @@
package tmpls
import "embed"
//go:embed *.tmpl
var FS embed.FS