feat: initialize template

This commit is contained in:
2026-02-11 20:27:14 +01:00
parent c937be1274
commit bbae5b1c93
61 changed files with 396 additions and 4399 deletions
+12
View File
@@ -0,0 +1,12 @@
package handler
import (
"net/http"
"github.com/a-h/templ"
"git.schreifuchs.ch/schreifuchs/schreifuchs.ch/web/pages"
)
func Home() http.Handler {
return templ.Handler(pages.Index())
}
+12
View File
@@ -0,0 +1,12 @@
package handler
import (
"net/http"
"github.com/a-h/templ"
"git.schreifuchs.ch/schreifuchs/schreifuchs.ch/web/pages"
)
func Home() http.Handler {
return templ.Handler(pages.Index())
}