package xess
templ Base(title string, headArea, navBar, bodyArea, footer templ.Component) {
{ title }
if headArea != nil {
@headArea
}
if navBar != nil {
}
{ title }
@bodyArea
if footer != nil {
}
}
templ Simple(title string, body templ.Component) {
@Base(
title,
nil,
nil,
body,
nil,
)
}