diff options
-rw-r--r-- | haunt.scm | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -36,7 +36,9 @@ #:collections `(("Recent posts" "index.html" ,(compose (lambda (posts) - (take posts 8)) + (if (< (length posts) 8) + posts + (take posts 8))) filter-posts-remove-future-drafts posts/reverse-chronological)) ("All posts" "all.html" |