summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-01-09 21:59:40 +0100
committerRicardo Wurmus <rekado@elephly.net>2017-01-09 21:59:40 +0100
commit28be2a5601e2807f232318ab1eb06b4001f59932 (patch)
treea22a01458c234a8989b6386c94b4495f39b227c5
parent6c323351611e5b42953de355c8795e3af81a9506 (diff)
haunt: Fix feeds.
-rw-r--r--haunt.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/haunt.scm b/haunt.scm
index d1d0c78..6dc65c7 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -269,7 +269,7 @@ in parentheses."
(define %make-slug post/file-base-name)
(site #:title "Rekado"
- #:domain "http://elephly.net/posts"
+ #:domain "http://elephly.net"
#:default-metadata
'((author . "Ricardo Wurmus")
(email . "rekado+web@elephly.net"))
@@ -291,5 +291,5 @@ in parentheses."
(pin-blog-post "posts/2010-03-23-fur-man.skr"
"fur-man.html"
#:theme elephly-theme)
- (atom-feed)
- (atom-feeds-by-tag)))
+ (atom-feed #:blog-prefix "/posts")
+ (atom-feeds-by-tag #:blog-prefix "/posts")))