From: Bjørn Erik Pedersen Date: Mon, 21 Nov 2016 09:35:57 +0000 (+0100) Subject: node to page: Fix site pages sort X-Git-Tag: v0.18~81 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0eb5f54d;p=brevno-suite%2Fhugo node to page: Fix site pages sort Updates #2297 --- diff --git a/hugolib/hugo_sites.go b/hugolib/hugo_sites.go index 0da7efb8..843bfe82 100644 --- a/hugolib/hugo_sites.go +++ b/hugolib/hugo_sites.go @@ -295,12 +295,23 @@ func (h *HugoSites) createMissingPages() error { } if len(newPages) > 0 { + // This resorting is unfortunate, but it also needs to be sorted + // when sections are created. first := h.Sites[0] + first.AllPages = append(first.AllPages, newPages...) + + first.AllPages.Sort() + + for _, s := range h.Sites { + s.Pages.Sort() + } + for i := 1; i < len(h.Sites); i++ { h.Sites[i].AllPages = first.AllPages } } + return nil }