blob: 52782dc7981437f778538117bae64d2a3e0e1374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(use-modules (haunt site)
(haunt reader)
(haunt builder blog)
(haunt builder atom)
(srfi srfi-19))
(site #:title "Built with Guile"
#:domain "example.com"
#:default-metadata
'((author . "Eva Luator")
(email . "eva@example.com"))
#:readers (list sxml-reader html-reader)
#:builders (list (blog)
(atom-feed)
(atom-feeds-by-tag)))
|