diff options
author | Cristian Cezar Moisés <[email protected]> | 2024-02-13 03:07:31 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-13 03:07:31 +0000 |
commit | dd6b715579567f2350b5142bc7b8eb8953182f15 (patch) | |
tree | 7d5b633d6aec3ee09573c071e445df088d248031 /haunt.scm | |
parent | 69f51f531c94266c9b02ccf392ef0c8eda82987a (diff) |
Update haunt.scm
Diffstat (limited to 'haunt.scm')
-rw-r--r-- | haunt.scm | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -25,14 +25,14 @@ (define home-page (static-page "Home" - "index.html" + "/site/index.html" `(,(centered-image "images/mainframe_256x256.gif")))) ;; Static "About" page (define about-page (static-page "About" - "about.html" + "/site/about.html" `((h1 "About") (p "This is the personal website of Cristian Cezar Moisés." " I am a student. (Pronouns: " @@ -70,7 +70,7 @@ (define not-found (static-page "404" - "404.html" + "/site/404.html" `((h1 "404 Page Not Found") (p "Unfortunately the page you've tried to access doesn't exist!") (br) @@ -81,11 +81,11 @@ ;; Collection of miscellaneous posts (define %misc - `(("Recent Posts" "misc.html" ,misc-posts))) + `(("Recent Posts" "/site/misc.html" ,misc-posts))) ;; Collection of research-related posts (define %research - `(("Published Work" "research.html" ,research-posts))) + `(("Published Work" "/site/research.html" ,research-posts))) ;; Build site (site #:title |