package web
import "strings"
templ base(title, description, keywords, canonical, heading string, head templ.Component) {
if title != "" {
{ title } - Arav's dwelling
} else {
Arav's dwelling
}
@head
{ children... }
}
var navElements = []string{"Stuff", "Mindflow", "About", "Guestbook"}
templ navigation(heading string) {
for _, n := range navElements {
if n == heading {
continue
}
{ n }
}
if heading != "" {
{ heading }
}
}