diff options
| author | Henry Webster <hwebs@hwebs.info> | 2026-07-19 19:51:39 -0500 |
|---|---|---|
| committer | Henry Webster <hwebs@hwebs.info> | 2026-07-19 19:51:39 -0500 |
| commit | 95834660fd0a993f103972ec2214a38443221d79 (patch) | |
| tree | 8f0e8287aa42dfaf09ba4571a98e8582e10776cf /haunt.scm | |
Initial commit of personal site on haunt.
Diffstat (limited to 'haunt.scm')
| -rw-r--r-- | haunt.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/haunt.scm b/haunt.scm new file mode 100644 index 0000000..15f5fff --- /dev/null +++ b/haunt.scm @@ -0,0 +1,16 @@ +(use-modules + (haunt builder flat-pages) + (haunt builder blog) + (haunt reader) + (haunt reader commonmark) + (haunt site) + (theme)) + +(site #:title "hwebs" + #:domain "hwebs.info" + #:default-metadata + '((author . "Henry J. Webster") + (email . "hwebs@hwebs.info")) + #:readers (list commonmark-reader) + #:builders (list (flat-pages #:template flat-page-template))) + |
