summaryrefslogtreecommitdiff
path: root/haunt.scm
diff options
context:
space:
mode:
Diffstat (limited to 'haunt.scm')
-rw-r--r--haunt.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/haunt.scm b/haunt.scm
index 15f5fff..4364b4d 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -1,6 +1,7 @@
(use-modules
(haunt builder flat-pages)
(haunt builder blog)
+ (haunt artifact)
(haunt reader)
(haunt reader commonmark)
(haunt site)
@@ -12,5 +13,7 @@
'((author . "Henry J. Webster")
(email . "hwebs@hwebs.info"))
#:readers (list commonmark-reader)
- #:builders (list (flat-pages #:template flat-page-template)))
+ #:builders (list (flat-pages #:template flat-page-template)
+ (lambda (site posts)
+ (list (verbatim-artifact "style.css" "style.css")))))