diff options
Diffstat (limited to 'example/haunt.scm')
-rw-r--r-- | example/haunt.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/example/haunt.scm b/example/haunt.scm new file mode 100644 index 0000000..b4405c0 --- /dev/null +++ b/example/haunt.scm @@ -0,0 +1,15 @@ +(use-modules (haunt site) + (haunt reader) + (haunt builder blog) + (haunt builder atom) + (srfi srfi-19)) + +(site #:title "Built with Guile" + #:domain "dthompson.us" + #:default-metadata + '((author . "David Thompson") + (email . "davet@gnu.org")) + #:readers (list sxml-reader html-reader) + #:builders (list (blog) + (atom-feed) + (atom-feeds-by-tag))) |