aboutsummaryrefslogtreecommitdiffstats
path: root/archive
diff options
context:
space:
mode:
Diffstat (limited to 'archive')
-rw-r--r--archive/tag.go14
1 files changed, 14 insertions, 0 deletions
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
}