Allows 404 templates from themes/THEME directories.

This commit is contained in:
Nicholas Whittier 2014-06-26 13:41:29 -06:00 committed by spf13
parent ac99ceccac
commit 78962a14f8

View file

@ -738,13 +738,14 @@ func (s *Site) RenderHomePage() error {
}
}
if a := s.Tmpl.Lookup("404.html"); a != nil {
n.Url = helpers.Urlize("404.html")
n.Title = "404 Page not found"
n.Permalink = s.permalink("404.html")
n.Url = helpers.Urlize("404.html")
n.Title = "404 Page not found"
n.Permalink = s.permalink("404.html")
layouts := []string{"404.html"}
return s.render(n, "404.html", s.appendThemeTemplates(layouts)...)
nfLayouts := []string{"404.html"}
nfErr := s.render(n, "404.html", s.appendThemeTemplates(nfLayouts)...)
if nfErr != nil {
return nfErr
}
return nil