From dd6b715579567f2350b5142bc7b8eb8953182f15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Cezar=20Mois=C3=A9s?= <86272521+cristiancmoises@users.noreply.github.com> Date: Tue, 13 Feb 2024 03:07:31 +0000 Subject: Update haunt.scm --- haunt.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/haunt.scm b/haunt.scm index 15f5247..e80f32b 100644 --- a/haunt.scm +++ b/haunt.scm @@ -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 -- cgit v1.2.3