From 828d9e39ce436c8290efa0dd875cbb9b8cbbf504 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 4 Jan 2025 20:57:35 -0800 Subject: enable referring to all the templates in the directory to make life easier --- render/render.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'render') diff --git a/render/render.go b/render/render.go index 9698ad8..9e829ab 100644 --- a/render/render.go +++ b/render/render.go @@ -66,7 +66,7 @@ func Init() { "SiteURL": SiteURL, } - base := path.Join(config.Config.TmplDir, BASE_TEMPLATE) + // base := path.Join(config.Config.TmplDir, BASE_TEMPLATE) for _, t := range ts { tf := filepath.Base(t) @@ -74,7 +74,8 @@ func Init() { // templates[tf] = template.Must(template.ParseFiles(t, base)) tx := template.New("t").Funcs(tmplFuncs) - templates[tf], err = tx.ParseFiles(base, t) + // templates[tf], err = tx.ParseFiles(base, t, (ts...)) + templates[tf], err = tx.ParseGlob(config.Config.TmplDir + "/*") if err != nil { // temporary files can confuse this, especially when // running the file system watcher so we silently -- cgit v1.2.3