2015-10-13 01:32:05 +02:00
|
|
|
(use-modules (haunt asset)
|
2015-04-14 01:53:39 +02:00
|
|
|
(haunt builder blog)
|
|
|
|
(haunt builder atom)
|
2015-10-13 01:32:05 +02:00
|
|
|
(haunt builder assets)
|
|
|
|
(haunt reader)
|
|
|
|
(haunt reader skribe)
|
|
|
|
(haunt site))
|
2015-04-14 01:53:39 +02:00
|
|
|
|
|
|
|
(site #:title "Built with Guile"
|
2015-04-14 02:29:00 +02:00
|
|
|
#:domain "example.com"
|
2015-04-14 01:53:39 +02:00
|
|
|
#:default-metadata
|
2015-04-14 02:29:00 +02:00
|
|
|
'((author . "Eva Luator")
|
|
|
|
(email . "eva@example.com"))
|
2015-10-13 01:32:05 +02:00
|
|
|
#:readers (list skribe-reader sxml-reader html-reader)
|
2015-04-14 01:53:39 +02:00
|
|
|
#:builders (list (blog)
|
|
|
|
(atom-feed)
|
2015-07-27 14:54:30 +02:00
|
|
|
(atom-feeds-by-tag)
|
|
|
|
(static-directory "images")))
|