diff options
author | bd <bdunahu@operationnull.com> | 2025-01-15 00:19:54 -0700 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-01-15 00:19:54 -0700 |
commit | ef3f57fdec7634b73bb09618b56c7e125a89ee6e (patch) | |
tree | 2f89e7d98d4142ca1c483ce7746ff007a3be97ac /src/operationnull/site.scm | |
parent | 2a149b1e147d6420b14ee267516624ebe9e713a3 (diff) |
general updates, add porphyrion link
Diffstat (limited to 'src/operationnull/site.scm')
-rw-r--r-- | src/operationnull/site.scm | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/operationnull/site.scm b/src/operationnull/site.scm index f1acfce..c6cfe31 100644 --- a/src/operationnull/site.scm +++ b/src/operationnull/site.scm @@ -1,11 +1,9 @@ (define-module (operationnull site) #:use-module (haunt builder assets) - #:use-module (haunt builder atom) - #:use-module (haunt builder blog) #:use-module (haunt html) #:use-module (haunt post) #:use-module (haunt reader) - #:use-module (haunt reader commonmark) + #:use-module (haunt reader skribe) #:use-module (haunt site) #:use-module (operationnull pages) #:use-module (operationnull static) @@ -14,7 +12,7 @@ (define %blog-collection - `(("Recent Posts" "/posts/index.html" ,posts/reverse-chronological))) + `(("Infrequently Updated Notes" "/posts/index.html" ,posts/reverse-chronological))) (define main-site (site #:title "operationnull" @@ -23,15 +21,9 @@ #:build-directory "target" #:default-metadata '((author . "bdunahu")) - #:readers (list commonmark-reader) + #:readers (list skribe-reader) #:builders (list (static-page index-content "index.html" "home") (static-page contact-content "/contact.html" "contact") - (blog #:theme main-theme - #:prefix "/posts/" - #:collections %blog-collection) (static-page e404 "/404.html" "404 Error") (static-page gold-content "/gold.html" "More Worthless than Gold") - (atom-feed #:file-name "atom.xml" - #:subtitle "Recent Posts") - ;; (atom-feeds-by-tag) (static-directory "content/assets" "assets")))) |