summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-12 19:18:48 +0100
committerxengineering <me@xengineering.eu>2023-02-12 19:18:48 +0100
commit88af7a818f2ef3c45c4e849512ca1f6289a9dce2 (patch)
tree878a6feec224c6169ebee15487e80f6ce27224d2 /handler.go
parenta288826b924266ff4577003103ef49cf6bb5cc3c (diff)
downloadceres-88af7a818f2ef3c45c4e849512ca1f6289a9dce2.tar
ceres-88af7a818f2ef3c45c4e849512ca1f6289a9dce2.tar.zst
ceres-88af7a818f2ef3c45c4e849512ca1f6289a9dce2.zip
Centralize templating
This makes templating easier and allows to use partial templates.
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go9
1 files changed, 3 insertions, 6 deletions
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) {