diff options
Diffstat (limited to 'haunt.scm')
| -rw-r--r-- | haunt.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/haunt.scm b/haunt.scm new file mode 100644 index 0000000..b6d799a --- /dev/null +++ b/haunt.scm | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | (use-modules (haunt asset) | ||
| 2 | (haunt builder blog) | ||
| 3 | (haunt builder atom) | ||
| 4 | (haunt builder assets) | ||
| 5 | (haunt reader commonmark) | ||
| 6 | (haunt publisher rsync) | ||
| 7 | (haunt post) | ||
| 8 | (haunt site) | ||
| 9 | (theme)) | ||
| 10 | |||
| 11 | (site #:title "Vineet's site" | ||
| 12 | #:domain "vineetk.net" | ||
| 13 | #:default-metadata | ||
| 14 | '((author . "Vineet K") | ||
| 15 | (email . "me@vineetk.net")) | ||
| 16 | #:readers (list commonmark-reader) | ||
| 17 | #:builders (list (blog #:theme vin-theme | ||
| 18 | #:collections | ||
| 19 | `(("Posts" "index.html" ,posts/reverse-chronological))) | ||
| 20 | (atom-feed) | ||
| 21 | (static-directory "images") | ||
| 22 | (static-directory "static")) | ||
| 23 | #:publishers (list (rsync-publisher #:destination "/var/www/vineetk_html/" | ||
| 24 | #:user "vin" | ||
| 25 | #:host "saklas"))) | ||
