feat: webhooker 1.0 MVP — entity rename, core engine, delivery, management UI #16
@@ -37,9 +37,13 @@ type Handlers struct {
|
|||||||
|
|
||||||
// parsePageTemplate parses a page-specific template set from the embedded FS.
|
// parsePageTemplate parses a page-specific template set from the embedded FS.
|
||||||
// Each page template is combined with the shared base, htmlheader, and navbar templates.
|
// Each page template is combined with the shared base, htmlheader, and navbar templates.
|
||||||
|
// The page file must be listed first so that its root action ({{template "base" .}})
|
||||||
|
// becomes the template set's entry point. If a shared partial (e.g. htmlheader.html)
|
||||||
|
// is listed first, its {{define}} block becomes the root — which is empty — and
|
||||||
|
// Execute() produces no output.
|
||||||
func parsePageTemplate(pageFile string) *template.Template {
|
func parsePageTemplate(pageFile string) *template.Template {
|
||||||
return template.Must(
|
return template.Must(
|
||||||
template.ParseFS(templates.Templates, "htmlheader.html", "navbar.html", "base.html", pageFile),
|
template.ParseFS(templates.Templates, pageFile, "base.html", "htmlheader.html", "navbar.html"),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user