feat: initialize template

This commit is contained in:
2026-03-02 22:36:47 +01:00
parent b4e8baabdc
commit dd5e32cc4d
62 changed files with 433 additions and 1016 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())
}