From 7142374332605a0d873bbab302767f3f154ec44c Mon Sep 17 00:00:00 2001 From: Nate Finch Date: Wed, 10 Sep 2014 15:33:49 -0400 Subject: [PATCH] Sort by title if dates are the same --- hugolib/taxonomy.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hugolib/taxonomy.go b/hugolib/taxonomy.go index c03061830..93bd78f68 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