aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--haunt.scm10
1 files changed, 9 insertions, 1 deletions
diff --git a/haunt.scm b/haunt.scm
index 7f0825f..55dbdfd 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -14,7 +14,9 @@
;;; along with this file. If not, see <http://www.gnu.org/licenses/>.
(use-modules (haunt builder assets)
+ (haunt builder atom)
(haunt builder blog)
+ (haunt builder rss)
(haunt site)
(website readers wordpress-markdown)
(website builders replicant-blog))
@@ -28,4 +30,10 @@
#:posts-directory "markdown"
#:readers (list wordpress-markdown-reader)
#:builders (list (replicant-blog-website)
- (static-directory "static")))
+ (static-directory "static")
+ ;;;;;;;;;;;
+ ;; Feeds ;;
+ ;;;;;;;;;;;
+ (atom-feed)
+ (atom-feeds-by-tag)
+ (rss-feed)))