diff options
| author | Jakob L. Kreuze | 2019-05-02 19:44:02 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze | 2019-05-02 19:44:02 -0400 |
| commit | ebd57893a8b29c9c86f34f161cdc049447d64771 (patch) | |
| tree | 2dfbea7928a2ab3e3c4ce68f9030c557b982afd4 /haunt/haunt.scm | |
| parent | 5ad0ee4b3005056561b4f473f7592987ec548e61 (diff) | |
Add initial About page
Diffstat (limited to 'haunt/haunt.scm')
| -rw-r--r-- | haunt/haunt.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/haunt/haunt.scm b/haunt/haunt.scm index 7fd9355..88f4829 100644 --- a/haunt/haunt.scm +++ b/haunt/haunt.scm @@ -17,6 +17,7 @@ (use-modules (custom alias) (custom tag) (custom theme) + (haunt asset) (haunt builder atom) (haunt builder assets) (haunt builder blog) @@ -89,4 +90,6 @@ (static-page "Projects" "projects") (static-directory "css") (static-directory "fonts") - (static-directory "images"))) + (static-directory "images") + (lambda (site posts) + (make-asset "other/gpg.txt" "/gpg.txt")))) |