From a643f9a12779494ed35813b7906229728cf282e2 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 28 Oct 2019 17:23:23 +0000 Subject: Initial commit --- haunt.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 haunt.scm (limited to 'haunt.scm') diff --git a/haunt.scm b/haunt.scm new file mode 100644 index 0000000..a945372 --- /dev/null +++ b/haunt.scm @@ -0,0 +1,17 @@ +(use-modules (haunt asset) + (haunt builder blog) + (haunt builder atom) + (haunt builder assets) + (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) + #:builders (list (blog) + (atom-feed) + (atom-feeds-by-tag) + (static-directory "images"))) -- cgit v1.2.3