From: Austin Ziegler Date: Sat, 1 Nov 2014 04:15:22 +0000 (-0400) Subject: Allow partial without .html X-Git-Tag: v0.13~323 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d7e6e490;p=brevno-suite%2Fhugo Allow partial without .html `partial "header" .` means the same thing as `partial "header.html" .`. --- diff --git a/hugolib/template.go b/hugolib/template.go index 20c57701..2de1396f 100644 --- a/hugolib/template.go +++ b/hugolib/template.go @@ -563,10 +563,16 @@ func ExecuteTemplate(context interface{}, layouts ...string) *bytes.Buffer { buffer := new(bytes.Buffer) worked := false for _, layout := range layouts { - if localTemplates.Lookup(layout) != nil { - err := localTemplates.ExecuteTemplate(buffer, layout, context) + name := layout + + if localTemplates.Lookup(name) == nil { + name = layout + ".html" + } + + if localTemplates.Lookup(name) != nil { + err := localTemplates.ExecuteTemplate(buffer, name, context) if err != nil { - jww.ERROR.Println(err, "in", layout) + jww.ERROR.Println(err, "in", name) } worked = true break