(use-modules (haunt asset) (haunt builder blog) (haunt builder atom) (haunt builder assets) (haunt reader commonmark) (haunt publisher rsync) (haunt post) (haunt site) (theme)) (site #:title "Vineet's site" #:domain "vineetk.net" #:default-metadata '((author . "Vineet K") (email . "me@vineetk.net")) #:readers (list commonmark-reader) #:builders (list (blog #:theme vin-theme #:collections `(("Posts" "index.html" ,posts/reverse-chronological))) (atom-feed) (static-directory "images") (static-directory "static")) #:publishers (list (rsync-publisher #:destination "/var/www/vineetk_html/" #:user "vin" #:host "saklas")))