aboutsummaryrefslogtreecommitdiff
path: root/src/components/HeaderLink.astro
diff options
context:
space:
mode:
authorLarsVomMars2024-12-27 17:21:54 +0100
committerLarsVomMars2024-12-27 17:21:54 +0100
commitd8aa33cd84aaac217a9b9e7b6c4a0c1fa0f02046 (patch)
tree8dcdf597f5c4741279fcd7e0c25e79b792606c0d /src/components/HeaderLink.astro
parentca263eecf8d44a4b98b12b63f83a8c1f3ce4468a (diff)
Diffstat (limited to 'src/components/HeaderLink.astro')
-rw-r--r--src/components/HeaderLink.astro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/HeaderLink.astro b/src/components/HeaderLink.astro
index c53880d..a18dd3c 100644
--- a/src/components/HeaderLink.astro
+++ b/src/components/HeaderLink.astro
@@ -1,5 +1,6 @@
---
import type { HTMLAttributes } from "astro/types";
+import { SITE_BASE } from "../consts";
type Props = HTMLAttributes<"a">;
@@ -10,7 +11,7 @@ const isActive = href === pathname || href === "/" + (subpath?.[0] || "");
---
<a
- href={"/astro-blog/" + href}
+ href={SITE_BASE + "/" + href}
class:list={[className, { active: isActive }]}
{...props}
>