package naive
import "fmt"
templ base(title string, body templ.Component) {
{ title }
{ title }
@body
}
templ (i Impl) maze(body []string, links []link) {
for _, paragraph := range body {
{ paragraph }
}
for _, link := range links {
- { link.body }
}
}