Convert to go

This commit is contained in:
2026-07-30 00:30:27 +02:00
parent 42fb4e90b4
commit 4518a4a363
35 changed files with 962 additions and 1797 deletions
+11
View File
@@ -0,0 +1,11 @@
package web
import (
"embed"
"html/template"
)
//go:embed page.html
var templateFS embed.FS
var pageTemplate = template.Must(template.ParseFS(templateFS, "page.html"))