diff options
Diffstat (limited to 'example/haunt.scm')
-rw-r--r-- | example/haunt.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/example/haunt.scm b/example/haunt.scm index 66a8392..35c7ae2 100644 --- a/example/haunt.scm +++ b/example/haunt.scm @@ -3,6 +3,7 @@ (haunt asset) (haunt builder blog) (haunt builder atom) + (haunt builder assets) (srfi srfi-19)) (site #:title "Built with Guile" @@ -13,4 +14,5 @@ #:readers (list sxml-reader html-reader) #:builders (list (blog) (atom-feed) - (atom-feeds-by-tag))) + (atom-feeds-by-tag) + (static-directory "images"))) |