blob: 1fad26454ace17b5ba172f6504610582cdf1d3a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
(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 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"))))
|