package static import ( "embed" "html/template" ) var ( //go:embed index.tmpl indexTmpl string Index = template.Must(template.New("").Parse(indexTmpl)) //go:embed sakura.css CSS embed.FS )