aboutsummaryrefslogtreecommitdiffstats
path: root/haunt.scm
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2024-04-10 19:05:32 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2025-06-15 01:30:28 +0200
commita8c20625338468f5c90865419fb1bc50e4e197bb (patch)
treef9abf19badecfb05b2a08d2c11ca234ec143e1fa /haunt.scm
parent2e9d0482acedc9d935c1f22126fbdd19d4bb0b7d (diff)
downloadhaunt-blog-a8c20625338468f5c90865419fb1bc50e4e197bb.tar.gz
haunt-blog-a8c20625338468f5c90865419fb1bc50e4e197bb.tar.bz2
haunt-blog-a8c20625338468f5c90865419fb1bc50e4e197bb.zip
haunt: Add Atom and RSS feeds.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'haunt.scm')
-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)))