diff options
author | xengineering <me@xengineering.eu> | 2023-02-12 19:46:48 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-12 19:46:48 +0100 |
commit | ba327ee030a3b8abdbf9f5d10987060648dbb10e (patch) | |
tree | e1a9e046e2293bfa407535983b165fd620c06d42 /handler.go | |
parent | ddb4a94dd72c250bd8c2090378ef9a4fff404787 (diff) | |
download | ceres-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.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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) { |