From 55bea3a77007fcc9dab2f18ac0f45684d7ffd919 Mon Sep 17 00:00:00 2001 From: G2-Games Date: Wed, 30 Oct 2024 03:17:46 -0500 Subject: [PATCH] Fixed absolute paths for footer links --- src/pages.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages.rs b/src/pages.rs index 07bf400..767f251 100644 --- a/src/pages.rs +++ b/src/pages.rs @@ -18,8 +18,8 @@ pub fn footer() -> Markup { html! { footer { p {a href="/" {"Home"}} - p {a href="about" {"About"}} - p {a href="api" {"API"}} + p {a href="/about" {"About"}} + p {a href="/api" {"API"}} p {a href="https://github.com/Dangoware/confetti-box" {"Source"}} p {a href="https://github.com/Dangoware/" {"Dangoware"}} }