package templates import "dealroom/internal/model" templ Layout(title string, user *model.User) { { title } - Deal Room if user != nil { @Navigation(user) }
{ children... }
@Footer() } templ Navigation(user *model.User) { } templ Footer() { }