diff options
Diffstat (limited to 'snippets')
-rw-r--r-- | snippets/haunt.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/snippets/haunt.scm b/snippets/haunt.scm new file mode 100644 index 0000000..29250a1 --- /dev/null +++ b/snippets/haunt.scm @@ -0,0 +1,24 @@ +(use-modules (haunt asset) + (haunt builder blog) + (haunt builder atom) + (haunt builder assets) + (haunt reader) + (haunt reader skribe) + (haunt reader texinfo) + (haunt reader commonmark) + (haunt site)) + +(site #:title "Built with Guile" + #:domain "example.com" + #:default-metadata + '((author . "Eva Luator") + (email . "eva@example.com")) + #:readers (list commonmark-reader + texinfo-reader + skribe-reader + sxml-reader + html-reader) + #:builders (list (blog) + (atom-feed) + (atom-feeds-by-tag) + (static-directory "images"))) |