From 88af7a818f2ef3c45c4e849512ca1f6289a9dce2 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 12 Feb 2023 19:18:48 +0100 Subject: Centralize templating This makes templating easier and allows to use partial templates. --- handler.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'handler.go') diff --git a/handler.go b/handler.go index 0166d95..fae834a 100644 --- a/handler.go +++ b/handler.go @@ -42,8 +42,7 @@ func indexGet(w http.ResponseWriter, r *http.Request) { } } - path := filepath.Join(config.Http.Templates, "index.html") - ServeTemplate(w, "index", path, elements) + ServeTemplate(w, "index.html", elements) } func recipeGet(w http.ResponseWriter, r *http.Request) { @@ -101,8 +100,7 @@ func recipeGet(w http.ResponseWriter, r *http.Request) { goldmark.Convert([]byte(elements[0].DescriptionMarkdown), &buf) elements[0].RenderedDescriptionMarkdown = buf.String() - path := filepath.Join(config.Http.Templates, "recipe.html") - ServeTemplate(w, "recipe", path, elements[0]) + ServeTemplate(w, "recipe.html", elements[0]) } func recipePost(w http.ResponseWriter, r *http.Request) { @@ -175,8 +173,7 @@ func recipeEditGet(w http.ResponseWriter, r *http.Request) { return } - path := filepath.Join(config.Http.Templates, "recipe_edit.html") - ServeTemplate(w, "recipe", path, elements[0]) + ServeTemplate(w, "recipe_edit.html", elements[0]) } func recipeEditPost(w http.ResponseWriter, r *http.Request) { -- cgit v1.2.3-70-g09d2