summaryrefslogtreecommitdiff
path: root/example/haunt.scm
blob: b4405c0438ef58c6ad14bb81fd4dc903fcb99845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(use-modules (haunt site)
             (haunt reader)
             (haunt builder blog)
             (haunt builder atom)
             (srfi srfi-19))

(site #:title "Built with Guile"
      #:domain "dthompson.us"
      #:default-metadata
      '((author . "David Thompson")
        (email  . "davet@gnu.org"))
      #:readers (list sxml-reader html-reader)
      #:builders (list (blog)
                       (atom-feed)
                       (atom-feeds-by-tag)))