#109 update deployment
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 47s

This commit is contained in:
Tim
2024-08-24 19:33:22 +02:00
parent 1db7893db5
commit 936e6bc1c6
9 changed files with 41 additions and 43 deletions

View File

@@ -11,6 +11,7 @@ func HandleIndexAnd404(w http.ResponseWriter, r *http.Request) {
var comp templ.Component = nil
if r.URL.Path != "/" {
comp = templates.Layout(templates.NotFound())
w.WriteHeader(http.StatusNotFound)
} else {
comp = templates.Layout(templates.Index())
}

View File

@@ -27,7 +27,6 @@ func App(w http.ResponseWriter, r *http.Request) {
comp := templates.App()
layout := templates.Layout(comp)
layout.Render(r.Context(), w)
w.WriteHeader(http.StatusOK)
}
func NewWorkout(db *sql.DB) http.HandlerFunc {