19 lines
516 B
Scheme
19 lines
516 B
Scheme
|
(use-modules (haunt asset)
|
||
|
(haunt site)
|
||
|
(haunt builder blog)
|
||
|
(haunt builder atom)
|
||
|
(haunt reader)
|
||
|
;;(haunt reader skribe)
|
||
|
(haunt reader commonmark))
|
||
|
|
||
|
|
||
|
(site #:title "lopsite"
|
||
|
#:domain "loplkc.neocities.com"
|
||
|
#:default-metadata
|
||
|
'((author . "loplkc")
|
||
|
(email . "loplkc@loplkc.loplkc"))
|
||
|
#:readers (list commonmark-reader)
|
||
|
#:builders (list (blog)
|
||
|
(atom-feed)
|
||
|
(atom-feeds-by-tag)))
|