package core import "wnzl-snow/version" templ HTML(title string, content templ.Component) { @head(title) @body(content) } templ head(title string) { { title } } templ body(content templ.Component) {
@content
}