diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2024-04-10 19:05:32 +0200 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2025-06-15 01:30:28 +0200 |
| commit | a8c20625338468f5c90865419fb1bc50e4e197bb (patch) | |
| tree | f9abf19badecfb05b2a08d2c11ca234ec143e1fa /haunt.scm | |
| parent | 2e9d0482acedc9d935c1f22126fbdd19d4bb0b7d (diff) | |
| download | haunt-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.scm | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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))) |
