From 40868be7d4b9e1d9909a19dccc25ec49c1b5924b Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 11 Feb 2024 22:44:32 +0100 Subject: view: Implement GET handler for model.Recipes --- view/templates.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 view/templates.go (limited to 'view/templates.go') diff --git a/view/templates.go b/view/templates.go new file mode 100644 index 0000000..d08f95e --- /dev/null +++ b/view/templates.go @@ -0,0 +1,15 @@ +package view + +import ( + "embed" + "html/template" +) + +//go:embed html/*.html +var htmlFS embed.FS + +var html *template.Template + +func Init() { + html = template.Must(template.New("html").ParseFS(htmlFS, "html/*.html")) +} -- cgit v1.2.3-70-g09d2