From 2929b4279c7a8128bd305290cc4187b6afb11cde Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Fri, 13 May 2022 11:47:29 -0600 Subject: Implement rendering Posts to html --- srv/src/tpl/tpl.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 srv/src/tpl/tpl.go (limited to 'srv/src/tpl/tpl.go') diff --git a/srv/src/tpl/tpl.go b/srv/src/tpl/tpl.go new file mode 100644 index 0000000..1dd98ba --- /dev/null +++ b/srv/src/tpl/tpl.go @@ -0,0 +1,12 @@ +// 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/*")) -- cgit v1.2.3