mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Allows 404 templates from themes/THEME directories.
This commit is contained in:
parent
ac99ceccac
commit
78962a14f8
1 changed files with 7 additions and 6 deletions
|
@ -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")
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue