diff options
| -rw-r--r-- | haunt/custom/tag.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haunt/custom/tag.scm b/haunt/custom/tag.scm index a36197a..abac1b5 100644 --- a/haunt/custom/tag.scm +++ b/haunt/custom/tag.scm @@ -28,7 +28,7 @@ the posts that have a certain tag." (lambda (site posts) (map (lambda (alist) (let* ((tag-name (car alist)) - (posts (cdr alist)) + (posts (posts/reverse-chronological (cdr alist))) (title (format #f "Posts tagged as \"~a\"" tag-name)) (file-name (format #f "tag-~a.html" tag-name)) (body `(h1 ,(format #f "Tagged as \"~a\"" tag-name)))) |