summaryrefslogtreecommitdiff
path: root/snippets
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2018-03-10 21:24:16 -0500
committerDavid Thompson <dthompson2@worcester.edu>2018-03-10 21:24:16 -0500
commit866a0ec79da68f978a8199efdba09320b62016a1 (patch)
treecfae59cfc28c972f6404eabb8d85d5c77be6d21b /snippets
parent8daf452f4ca074d241921d7623d9386db106e0de (diff)
Add haunt project page and release announcements.
Diffstat (limited to 'snippets')
-rw-r--r--snippets/haunt.scm24
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")))