summaryrefslogtreecommitdiff
path: root/templ/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'templ/template.go')
-rw-r--r--templ/template.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/templ/template.go b/templ/template.go
index 9def1b8..f609bc4 100644
--- a/templ/template.go
+++ b/templ/template.go
@@ -32,7 +32,7 @@ func checkLive() bool {
func loadBase(fs fs.FS) {
baseTpl = template.Must(template.New("base.tpl").
Funcs(form.FuncMap()).
- ParseFS(fs, "base.tpl", "form.tpl"))
+ ParseFS(fs, "base.tpl", "form.tpl", "navlinks.tpl", "content.tpl"))
formBuilder = form.Builder{InputTemplate: baseTpl.Lookup("formItem")}
baseTpl.Funcs(formBuilder.FuncMap())
}