File tree 6 files changed +21
-8
lines changed
6 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"_variables" : {
3
- "lastUpdateCheck" : 1736350943893
3
+ "lastUpdateCheck" : 1737997215950
4
4
}
5
5
}
Original file line number Diff line number Diff line change 1
1
---
2
+ import { getUrl } from ' ../util/path'
2
3
3
4
---
4
5
5
6
<div class =" navbar" >
6
7
<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' )} ` />
9
10
</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 >
12
13
</div >
13
14
<style >
14
15
.navbar {
Original file line number Diff line number Diff line change 1
1
---
2
2
import Navbar from " ../components/Navbar.astro" ;
3
+ import { getUrl } from " ../util/path" ;
3
4
---
4
5
5
6
<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' )} ` />
7
8
<title >About</title >
8
9
<body >
9
10
<Navbar />
Original file line number Diff line number Diff line change 2
2
import config from " ../../data/config.json" ;
3
3
import EditionCrafter from " @cu-mkp/editioncrafter" ;
4
4
import Navbar from " ../components/Navbar.astro" ;
5
+ import { getUrl } from " ../util/path" ;
5
6
---
6
7
7
8
<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' )} ` />
9
10
<title >EditionCrafter</title >
10
11
<body >
11
12
<Navbar />
Original file line number Diff line number Diff line change 2
2
import { RecordList } from " @cu-mkp/editioncrafter" ;
3
3
import Navbar from " ../components/Navbar.astro" ;
4
4
import config from " ../../data/config.json" ;
5
+ import { getUrl } from ' ../util/path'
5
6
---
6
7
7
8
<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' )} ` />
9
10
<title >Record List</title >
10
11
<body >
11
12
<Navbar />
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments