Skip to content

Commit 19fe4f4

Browse files
committed
fix URL handling for different base URLs
1 parent 784059e commit 19fe4f4

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

.astro/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"_variables": {
3-
"lastUpdateCheck": 1736350943893
3+
"lastUpdateCheck": 1737997215950
44
}
55
}

src/components/Navbar.astro

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2+
import { getUrl } from '../util/path'
23
34
---
45

56
<div class="navbar">
67
<a href={import.meta.env.BASE_URL} class="logo">
7-
<img alt="EditionCrafter logo" src=`${import.meta.env.BASE_URL}/ec_logo.svg` />
8-
<img alt="EditionCrafter" src=`${import.meta.env.BASE_URL}/ec_name.svg` />
8+
<img alt="EditionCrafter logo" src=`${getUrl('ec_logo.svg')}` />
9+
<img alt="EditionCrafter" src=`${getUrl('ec_name.svg')}` />
910
</a>
10-
<a href=`${import.meta.env.BASE_URL}/records`>Record List</a>
11-
<a href=`${import.meta.env.BASE_URL}/about`>About</a>
11+
<a href=`${getUrl('records')}`>Record List</a>
12+
<a href=`${getUrl('about')}`>About</a>
1213
</div>
1314
<style>
1415
.navbar {

src/pages/about.astro

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
import Navbar from "../components/Navbar.astro";
3+
import { getUrl } from "../util/path";
34
---
45

56
<html>
6-
<link rel="icon" type="image/x-icon" href=`${import.meta.env.BASE_URL}/ec_logo.svg` />
7+
<link rel="icon" type="image/x-icon" href=`${getUrl('ec_logo.svg')}` />
78
<title>About</title>
89
<body>
910
<Navbar />

src/pages/index.astro

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
import config from "../../data/config.json";
33
import EditionCrafter from "@cu-mkp/editioncrafter";
44
import Navbar from "../components/Navbar.astro";
5+
import { getUrl } from "../util/path";
56
---
67

78
<html>
8-
<link rel="icon" type="image/x-icon" href=`${import.meta.env.BASE_URL}/ec_logo.svg` />
9+
<link rel="icon" type="image/x-icon" href=`${getUrl('ec_logo.svg')}` />
910
<title>EditionCrafter</title>
1011
<body>
1112
<Navbar />

src/pages/records.astro

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
import { RecordList } from "@cu-mkp/editioncrafter";
33
import Navbar from "../components/Navbar.astro";
44
import config from "../../data/config.json";
5+
import { getUrl } from '../util/path'
56
---
67

78
<html>
8-
<link rel="icon" type="image/x-icon" href=`${import.meta.env.BASE_URL}/ec_logo.svg` />
9+
<link rel="icon" type="image/x-icon" href=`${getUrl('ec_logo.svg')}` />
910
<title>Record List</title>
1011
<body>
1112
<Navbar />

src/util/path.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export const getUrl = (path) => {
2+
const base = import.meta.env.BASE_URL
3+
4+
if (base === '/') {
5+
return `/${path}`
6+
}
7+
8+
return `${base}/${path}`
9+
}

0 commit comments

Comments
 (0)