123456789101112131415161718192021222324252627 |
- (use-modules (haunt asset)
- (haunt builder blog)
- (haunt builder atom)
- (haunt builder assets)
- (haunt reader)
- (haunt reader commonmark)
- (haunt site)
- (builders css)
- (builders pages) ;;the index come from here
- ;;(builders gallery-builder)
- )
- (site #:title "Proper Naming"
- #:domain "propernaming.com"
- #:default-metadata
- '((author . "Greg Jason")
- (email . "greg@example.com"))
- #:readers (list commonmark-reader sxml-reader)
- #:builders (list ;;(blog) ;;(site-builder)
- (atom-feed)
- (atom-feeds-by-tag)
- (pages)
- ;;(gallery-builder)
- (css-files)
- (static-directory "images")
- ))
|