package templates templ head(title string) { { title } } templ footer(timestamp string) { } templ navbar(loggedIn bool) { } templ loginButton(loggedIn bool) { if loggedIn { Profile
Log out
} else {
Log in
} } templ errorMessage(title string, content string) {

{ title }

{ content }
}