summaryrefslogtreecommitdiff
path: root/haunt.scm
blob: 15f5fffdd11860a63bd2af4d45c8b41a91ca186a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(use-modules
 (haunt builder flat-pages)
 (haunt builder blog)
 (haunt reader)
 (haunt reader commonmark)
 (haunt site)
 (theme))

(site #:title "hwebs"
      #:domain "hwebs.info"
      #:default-metadata
      '((author . "Henry J. Webster")
        (email . "hwebs@hwebs.info"))
      #:readers (list commonmark-reader)
      #:builders (list (flat-pages #:template flat-page-template)))