package templates templ head(title string) { { title } } templ header() { } templ Layout(component templ.Component, title string) { @head(title) @header()
@component
}