mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Fix bug in Site.assembleSections method
Site.assembleSections logic assumes that the the home page would always be the first in the Site's list of pages. This is not in fact guaranteed to be true. When it is not, the method can fail to set the parent for some or all root-level pages. Fixes #4447
This commit is contained in:
parent
e9750d831f
commit
00868081f6
1 changed files with 7 additions and 3 deletions
|
@ -167,11 +167,15 @@ func (s *Site) assembleSections() Pages {
|
|||
undecided Pages
|
||||
)
|
||||
|
||||
homes := s.findPagesByKind(KindHome)
|
||||
if len(homes) == 1 {
|
||||
home = homes[0]
|
||||
} else if len(homes) > 1 {
|
||||
panic("Too many homes")
|
||||
}
|
||||
|
||||
for i, p := range s.Pages {
|
||||
if p.Kind != KindPage {
|
||||
if p.Kind == KindHome {
|
||||
home = p
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue