From 24fdaa7a398c1ec20c8b02e51ef362248c3adf4e Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sun, 17 Dec 2017 10:52:09 -0800 Subject: tag sort stuff --- archive/tag.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'archive') diff --git a/archive/tag.go b/archive/tag.go index 3554d9c..ff10fba 100644 --- a/archive/tag.go +++ b/archive/tag.go @@ -6,6 +6,7 @@ import ( "adammathes.com/snkt/render" "fmt" "path" + "sort" ) var tagTmplName = "tag" @@ -30,6 +31,18 @@ func (ta TagArchive) Target() string { type TagArchives []*TagArchive +func (tags TagArchives) Len() int { + return len(tags) +} + +func (tags TagArchives) Less(i, j int) bool { + return tags[i].Tag < tags[j].Tag +} + +func (tags TagArchives) Swap(i, j int) { + tags[i], tags[j] = tags[j], tags[i] +} + func ParseTags(posts post.Posts) *TagArchives { if !render.TmplExists(tagTmplName) { @@ -61,6 +74,7 @@ func ParseTags(posts post.Posts) *TagArchives { tas = append(tas, &ta) } + sort.Sort(tas) return &tas } -- cgit v1.2.3