package web templ (w *Web) Header(title string) { if title != "" { catbase - { title } } else { catbase } } templ (w *Web) Footer() { } templ (w *Web) Index(title string, contents templ.Component) { @w.Header(title) @w.Nav(title) if contents != nil { @contents } @w.Footer() } templ (w *Web) Nav(currentPage string) {
}