Used the new sitebuild tool to generate stuff.

This commit is contained in:
Zed A. Shaw 2025-07-04 14:36:24 -04:00
parent 49dc8cf330
commit 9961915c8c
15 changed files with 169 additions and 33 deletions

View file

@ -1,9 +0,0 @@
package main
import (
"log"
)
func main() {
log.Println("I DO THING!")
}

View file

@ -0,0 +1,11 @@
package main
import (
"log"
"zedshaw.games/webapp/zed"
)
func main() {
log.Println("Generating site from pages to public.")
zed.RenderPages("./pages", "./public", "layouts/main")
}