From ba327ee030a3b8abdbf9f5d10987060648dbb10e Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 12 Feb 2023 19:46:48 +0100 Subject: Make add.html a template This allows to use partial HTML files via Go's templating features. --- handler.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'handler.go') 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) { -- cgit v1.2.3-70-g09d2