summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-12 19:46:48 +0100
committerxengineering <me@xengineering.eu>2023-02-12 19:46:48 +0100
commitba327ee030a3b8abdbf9f5d10987060648dbb10e (patch)
treee1a9e046e2293bfa407535983b165fd620c06d42 /handler.go
parentddb4a94dd72c250bd8c2090378ef9a4fff404787 (diff)
downloadceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.tar
ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.tar.zst
ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.zip
Make add.html a template
This allows to use partial HTML files via Go's templating features.
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/handler.go b/handler.go
index fae834a..5198a9f 100644
--- a/handler.go
+++ b/handler.go
@@ -233,9 +233,7 @@ func recipeImageGet(w http.ResponseWriter, r *http.Request) {
func addRecipesGet(w http.ResponseWriter, r *http.Request) {
- filename := "add.html"
- path := filepath.Join(config.Http.Static, filename)
- http.ServeFile(w, r, path)
+ ServeTemplate(w, "add.html", nil)
}
func addRecipesPost(w http.ResponseWriter, r *http.Request) {