(define-module (operationnull site) #:use-module (haunt builder assets) #:use-module (haunt html) #:use-module (haunt post) #:use-module (haunt reader) #:use-module (haunt reader skribe) #:use-module (haunt site) #:use-module (operationnull pages) #:use-module (operationnull static) #:use-module (operationnull theme) #:export (main-site)) (define %blog-collection `(("Infrequently Updated Notes" "/posts/index.html" ,posts/reverse-chronological))) (define main-site (site #:title "operationnull" #:domain "operationnull.com" #:posts-directory "content/posts" #:build-directory "target" #:default-metadata '((author . "bdunahu")) #:readers (list skribe-reader) #:builders (list (static-page index-content "index.html" "home") (static-page contact-content "/contact.html" "contact") (static-page e404 "/404.html" "404 Error") (static-page gold-content "/gold.html" "More Worthless than Gold") (static-directory "content/assets" "assets"))))