blob: b6d799a74710f8e4d6eda9500ade0d5732ca56af (
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
|
(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")))
|