summaryrefslogtreecommitdiff
path: root/view/templates.go
diff options
context:
space:
mode:
Diffstat (limited to 'view/templates.go')
-rw-r--r--view/templates.go15
1 files changed, 15 insertions, 0 deletions
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"))
+}