12 lines
173 B
Go
12 lines
173 B
Go
package web
|
|
|
|
import (
|
|
"embed"
|
|
"html/template"
|
|
)
|
|
|
|
//go:embed page.html
|
|
var templateFS embed.FS
|
|
|
|
var pageTemplate = template.Must(template.ParseFS(templateFS, "page.html"))
|