Skip to content

Commit

Permalink
fix: rss support for linked post
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Simpson committed Apr 25, 2020
1 parent 2ca4859 commit 62925d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cycle.lisp
Expand Up @@ -252,7 +252,8 @@
`((:title . ,(cdr (assoc :title post)))
(:slug . ,slug)
(:excerpt . ,(cdr (assoc :excerpt post)))
(:content . ,(post-for-slug slug))
(:link . ,(cdr (assoc :link post)))
(:content . ,(cdr (assoc :content post)))
(:date . ,(date-as-rfc-822 (cdr (assoc :published post)))))))

(defun gen-rss ()
Expand Down

0 comments on commit 62925d3

Please sign in to comment.