From: spf13 Date: Mon, 24 Nov 2014 22:10:38 +0000 (-0500) Subject: fixed #656. Templates work properly when watching. X-Git-Tag: v0.13~289 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cdbc741c;p=brevno-suite%2Fhugo fixed #656. Templates work properly when watching. --- diff --git a/hugolib/site.go b/hugolib/site.go index dd02d79f..b725cc41 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -167,7 +167,7 @@ func (s *Site) Analyze() { } func (s *Site) prepTemplates() { - s.Tmpl = tpl.T() + s.Tmpl = tpl.InitializeT() s.Tmpl.LoadTemplates(s.absLayoutDir()) if s.hasTheme() { s.Tmpl.LoadTemplatesWithPrefix(s.absThemeDir()+"/layouts", "theme") diff --git a/tpl/template.go b/tpl/template.go index b79b478e..b536c462 100644 --- a/tpl/template.go +++ b/tpl/template.go @@ -66,6 +66,12 @@ func T() Template { return tmpl } +// Resets the internal template state to it's initial state +func InitializeT() Template { + tmpl = New() + return tmpl +} + // Return a new Hugo Template System // With all the additional features, templates & functions func New() Template {