aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2023-05-09 01:41:37 +0200
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-05-09 02:19:09 +0200
commit8e4955af684670b8f41564aff385e75f0ba834a5 (patch)
treee093f58eca7deeb42a5cc4f79faa92a504a652e1
parentaa5a0d9056a721cc2bf78669bf1a9b026f7b6025 (diff)
feat: Update site configuration
-rw-r--r--haunt.scm20
1 files changed, 13 insertions, 7 deletions
diff --git a/haunt.scm b/haunt.scm
index e8a6d70..2cc7d1f 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -409,8 +409,6 @@ describe my personal projects and contributions.")))
#:project-template project-template
#:collection-template portfolio-template))
-(site #:title "Miguel Moreno"
- #:domain "mmoreno.eu"
;;
;; Pages
@@ -470,15 +468,23 @@ Computer Science graduate from the University of Kent.")
(h1 "404")
(h1 "Not Found")))))
+(site #:title %fullname
+ #:domain %domain
#:default-metadata
- '((author . "Miguel Moreno")
- (email . "mmoreno@mmoreno.eu"))
+ `((author . ,%fullname)
+ (email . ,%email))
#:readers (list html-reader)
#:builders (list index-page
+ (portfolio #:prefix "/projects"
+ #:theme %portfolio-theme
+ #:projects %projects
+ #:filter projects/filter-authored
+ #:collections %portfolio-collections)
(blog #:prefix "/posts"
- #:theme mmoreno-haunt-theme
- #:collections %collections)
- projects-page
+ #:theme %blog-theme
+ #:collections %blog-collections)
contact-page
+ not-found-page
(atom-feed)
+ (atom-feeds-by-tag)
(static-directory "assets")))