From 866a0ec79da68f978a8199efdba09320b62016a1 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 10 Mar 2018 21:24:16 -0500 Subject: Add haunt project page and release announcements. --- snippets/haunt.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 snippets/haunt.scm (limited to 'snippets') 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"))) -- cgit v1.2.3