From 2868212bb4fb233212d2f68bc13bd1fdb5b7eaaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 28 Oct 2016 17:10:10 +0200 Subject: website: Use absolute URLs to the articles in the Atom feed. * website/haunt.scm: Pass an absolute URL as the #:blog-prefix for 'atom-feed'. --- website/haunt.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/haunt.scm b/website/haunt.scm index 761d488..1df877c 100644 --- a/website/haunt.scm +++ b/website/haunt.scm @@ -86,6 +86,10 @@ %web-pages) ,(blog #:theme (parameterized-theme %news-haunt-theme) #:prefix "news") + + ;; Apparently the tags of Atom entries must be absolute URLs, + ;; hence this #:blog-prefix. ,(atom-feed #:file-name "news/feed.xml" - #:blog-prefix "news") + #:blog-prefix "https://www.gnu.org/software/guix/news") + ,(static-directory "static"))) -- cgit v1.2.3