From: Nate Finch Date: Wed, 10 Sep 2014 19:33:49 +0000 (-0400) Subject: Sort by title if dates are the same X-Git-Tag: v0.13~413 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=71423743;p=brevno-suite%2Fhugo Sort by title if dates are the same --- diff --git a/hugolib/taxonomy.go b/hugolib/taxonomy.go index c0306183..93bd78f6 100644 --- a/hugolib/taxonomy.go +++ b/hugolib/taxonomy.go @@ -166,10 +166,12 @@ func (p WeightedPages) Sort() { sort.Stable(p) } func (p WeightedPages) Count() int { return len(p) } func (p WeightedPages) Less(i, j int) bool { if p[i].Weight == p[j].Weight { - return p[i].Page.Date.Unix() > p[j].Page.Date.Unix() - } else { - return p[i].Weight < p[j].Weight + if p[i].Page.Date.Equal(p[j].Page.Date) { + return p[i].Page.Title < p[j].Page.Title + } + return p[i].Page.Date.After(p[i].Page.Date) } + return p[i].Weight < p[j].Weight } // TODO mimic PagesSorter for WeightedPages