summaryrefslogtreecommitdiff
path: root/srv/src/tpl/tpl.go
diff options
context:
space:
mode:
Diffstat (limited to 'srv/src/tpl/tpl.go')
-rw-r--r--srv/src/tpl/tpl.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/srv/src/tpl/tpl.go b/srv/src/tpl/tpl.go
deleted file mode 100644
index 1dd98ba..0000000
--- a/srv/src/tpl/tpl.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Package tpl contains template files which are used to render the blog.
-package tpl
-
-import (
- "embed"
- html_tpl "html/template"
-)
-
-//go:embed *
-var fs embed.FS
-
-var HTML = html_tpl.Must(html_tpl.ParseFS(fs, "html/*"))