From a8c20625338468f5c90865419fb1bc50e4e197bb Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 10 Apr 2024 19:05:32 +0200 Subject: haunt: Add Atom and RSS feeds. Signed-off-by: Denis 'GNUtoo' Carikli --- haunt.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'haunt.scm') 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 . (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))) -- cgit v1.2.3