2015-04-14 01:53:39 +02:00
|
|
|
(use-modules (haunt site)
|
|
|
|
(haunt reader)
|
2015-07-27 04:47:14 +02:00
|
|
|
(haunt asset)
|
2015-04-14 01:53:39 +02:00
|
|
|
(haunt builder blog)
|
|
|
|
(haunt builder atom)
|
2015-08-06 14:59:44 +02:00
|
|
|
(haunt builder assets))
|
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-04-14 01:53:39 +02:00
|
|
|
#:readers (list sxml-reader html-reader)
|
|
|
|
#:builders (list (blog)
|
|
|
|
(atom-feed)
|
2015-07-27 14:54:30 +02:00
|
|
|
(atom-feeds-by-tag)
|
|
|
|
(static-directory "images")))
|