From adfcadf36b276a5ff528f1768008089b1b8c4b06 Mon Sep 17 00:00:00 2001 From: Brit Butler Date: Mon, 7 Apr 2014 21:00:44 -0400 Subject: [PATCH] Missed feeds in mass renaming. --- src/feeds.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/feeds.lisp b/src/feeds.lisp index 83ba3a0..879f733 100644 --- a/src/feeds.lisp +++ b/src/feeds.lisp @@ -9,9 +9,9 @@ (tag-posts (list) (remove-if-not (lambda (x) (tag-p tag x)) list))) (let ((template (theme-fn template "feeds")) (index (if tag - (make-instance 'tag-index :id path + (make-instance 'tag-index :slug path :posts (first-10 (tag-posts posts))) - (make-instance 'index :id path + (make-instance 'index :slug path :posts (first-10 posts))))) (write-page (page-path index) (render-page index template)))))