mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-20 21:31:32 +02:00
Allows 404 templates from themes/THEME directories.
This commit is contained in:
@@ -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.Url = helpers.Urlize("404.html")
|
||||||
n.Title = "404 Page not found"
|
n.Title = "404 Page not found"
|
||||||
n.Permalink = s.permalink("404.html")
|
n.Permalink = s.permalink("404.html")
|
||||||
|
|
||||||
layouts := []string{"404.html"}
|
nfLayouts := []string{"404.html"}
|
||||||
return s.render(n, "404.html", s.appendThemeTemplates(layouts)...)
|
nfErr := s.render(n, "404.html", s.appendThemeTemplates(nfLayouts)...)
|
||||||
|
if nfErr != nil {
|
||||||
|
return nfErr
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
Reference in New Issue
Block a user