package templates import ( "embed" "html/template" ) //go:embed *.html var FS embed.FS var Templates = template.Must(template.ParseFS(FS, "*.html"))