Question: could the child/overlay/aboutPage get the default content from the master with something like {{parent}}
or {{master}}
?
E.g.
const (
layout = `<title>{{block "metaTitle" .}}golang.org{{end}}</title><body>{{block "content"}}{{end}}</body>`
aboutPage = `{{define "metaTitle"}}Read all about Go - {{parent}}{{end}} {{define "content"}}About page content{{end}}`
)