summaryrefslogtreecommitdiff
path: root/haunt.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-10-28 17:23:23 +0000
committerChristopher Baines <mail@cbaines.net>2019-10-28 17:23:23 +0000
commita643f9a12779494ed35813b7906229728cf282e2 (patch)
tree4fe822383a7d2c30c62137f4e32c110c10cc00a7 /haunt.scm
downloadweekly-news-a643f9a12779494ed35813b7906229728cf282e2.tar
weekly-news-a643f9a12779494ed35813b7906229728cf282e2.tar.gz
Initial commit
Diffstat (limited to 'haunt.scm')
-rw-r--r--haunt.scm17
1 files changed, 17 insertions, 0 deletions
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")))