Centralizing the template execution logic in one place
authorspf13 <steve.francia@gmail.com>
Fri, 6 Jun 2014 20:38:19 +0000 (16:38 -0400)
committerspf13 <steve.francia@gmail.com>
Fri, 6 Jun 2014 21:27:31 +0000 (17:27 -0400)
hugolib/page.go

index f71ed2b042fbffb91d68b8f096c0a77309390e6f..aedad2b03ee6762cc26dc8bd44e71ea4803401fd 100644 (file)
@@ -508,25 +508,7 @@ func (p *Page) Render(layout ...string) template.HTML {
                curLayout = layout[0]
        }
 
-       return bytesToHTML(p.ExecuteTemplate(curLayout).Bytes())
-}
-
-func (p *Page) ExecuteTemplate(layout string) *bytes.Buffer {
-       l := p.Layout(layout)
-       buffer := new(bytes.Buffer)
-       worked := false
-       for _, layout := range l {
-               if p.Tmpl.Lookup(layout) != nil {
-                       p.Tmpl.ExecuteTemplate(buffer, layout, p)
-                       worked = true
-                       break
-               }
-       }
-       if !worked {
-               jww.ERROR.Println("Unable to render", layout, ".")
-               jww.ERROR.Println("Expecting to find a template in either the theme/layouts or /layouts in one of the following relative locations", l)
-       }
-       return buffer
+       return ExecuteTemplateToHTML(p, p.Layout(curLayout)...)
 }
 
 func (page *Page) guessMarkupType() string {