Make html templates separate from site files

This commit is contained in:
nxshock 2021-09-25 17:21:08 +05:00
parent b0f9ea1f49
commit 379450c70f
3 changed files with 24 additions and 13 deletions

24
templates.go Normal file
View file

@ -0,0 +1,24 @@
package main
import (
"embed"
"html/template"
)
var templates *template.Template
//go:embed templates/*.htm
var templatesFS embed.FS
func initTepmplates() error {
var err error
templates, err = template.ParseFS(templatesFS, "templates/*.htm")
if err != nil {
return err
}
templatesFS = embed.FS{}
return nil
}