aboutsummaryrefslogtreecommitdiff
path: root/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'template.go')
-rw-r--r--template.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/template.go b/template.go
new file mode 100644
index 0000000..fae5c7f
--- /dev/null
+++ b/template.go
@@ -0,0 +1,24 @@
+package koushin
+
+import (
+ "fmt"
+ "html/template"
+ "io"
+
+ "github.com/labstack/echo/v4"
+)
+
+type tmpl struct {
+ t *template.Template
+}
+
+var _ = fmt.Printf
+
+func (t *tmpl) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
+ return t.t.ExecuteTemplate(w, name, data)
+}
+
+func loadTemplates() (*tmpl, error) {
+ t, err := template.New("drmdb").ParseGlob("public/*.html")
+ return &tmpl{t}, err
+}