Missed feeds in mass renaming.

This commit is contained in:
Brit Butler 2014-04-07 21:00:44 -04:00
parent bb66adb1d4
commit adfcadf36b

View file

@ -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)))))