summaryrefslogtreecommitdiff
path: root/www/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--www/src/components/BlogHead.astro2
-rw-r--r--www/src/pages/blog/index.astro2
-rw-r--r--www/src/pages/blog/introducing-astro.astro2
-rw-r--r--www/src/pages/index.astro2
-rw-r--r--www/src/scss/blog.scss (renamed from www/public/blog.scss)0
-rw-r--r--www/src/scss/code.scss (renamed from www/public/code.scss)0
-rw-r--r--www/src/scss/global.scss (renamed from www/public/global.scss)0
7 files changed, 4 insertions, 4 deletions
diff --git a/www/src/components/BlogHead.astro b/www/src/components/BlogHead.astro
index 30dc2f4ed..57168a494 100644
--- a/www/src/components/BlogHead.astro
+++ b/www/src/components/BlogHead.astro
@@ -4,4 +4,4 @@ import BaseHead from './BaseHead.astro';
const { title, description, canonicalURL } = Astro.props;
---
<BaseHead title={title} description={description} canonicalURL={canonicalURL} />
-<link rel="stylesheet" href="/blog.css" /> \ No newline at end of file
+<link rel="stylesheet" href={Astro.resolve('../../scss/blog.css')} /> \ No newline at end of file
diff --git a/www/src/pages/blog/index.astro b/www/src/pages/blog/index.astro
index 41f4d3f77..22a22cdb2 100644
--- a/www/src/pages/blog/index.astro
+++ b/www/src/pages/blog/index.astro
@@ -12,7 +12,7 @@ let lang = 'en';
<html lang={ lang ?? 'en' }>
<head>
<BaseHead title={title} description={description} permalink={permalink} />
- <link rel="stylesheet" href="/blog.css" />
+ <link rel="stylesheet" href={Astro.resolve('../../scss/blog.css')} />
<style>
body {
diff --git a/www/src/pages/blog/introducing-astro.astro b/www/src/pages/blog/introducing-astro.astro
index 8cf6a9eb6..3f7e13f4c 100644
--- a/www/src/pages/blog/introducing-astro.astro
+++ b/www/src/pages/blog/introducing-astro.astro
@@ -19,7 +19,7 @@ let lang = 'en';
<html lang={ lang ?? 'en' }>
<head>
<BaseHead title={title} description={description} permalink={permalink} />
- <link rel="stylesheet" href="/blog.css" />
+ <link rel="stylesheet" href={Astro.resolve('../../scss/blog.css')} />
</head>
<body>
diff --git a/www/src/pages/index.astro b/www/src/pages/index.astro
index 6ef6ad710..ea4f8b38b 100644
--- a/www/src/pages/index.astro
+++ b/www/src/pages/index.astro
@@ -18,7 +18,7 @@ let lang = 'en';
<html lang={ lang ?? 'en' }>
<head>
<BaseHead title={title} description={description} permalink={permalink} />
- <link rel="stylesheet" href="/global.css" />
+ <link rel="stylesheet" href={Astro.resolve('../scss/global.css')} />
</head>
<body>
diff --git a/www/public/blog.scss b/www/src/scss/blog.scss
index 3be4f48ec..3be4f48ec 100644
--- a/www/public/blog.scss
+++ b/www/src/scss/blog.scss
diff --git a/www/public/code.scss b/www/src/scss/code.scss
index ec0e8dea2..ec0e8dea2 100644
--- a/www/public/code.scss
+++ b/www/src/scss/code.scss
diff --git a/www/public/global.scss b/www/src/scss/global.scss
index 111e5bac3..111e5bac3 100644
--- a/www/public/global.scss
+++ b/www/src/scss/global.scss