blob: 1dd98bab21908bc5855bda796faa74fafe7e2419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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/*"))
|