diff options
| author | Joe Carstairs <me@joeac.net> | 2026-04-25 13:08:54 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-04-25 13:08:54 +0100 |
| commit | 00effae167e3ba853ae0284dc7f49a283b27f08a (patch) | |
| tree | 98e73ef9d6a2b18a4ab11835c6b209906b0bc7b0 | |
| parent | e50b62afa2406fa422c04345f038a583799610aa (diff) | |
renames blog.css -> post.css
| -rw-r--r-- | website/public/css/post.css (renamed from website/public/css/blog.css) | 0 | ||||
| -rw-r--r-- | website/src/layouts/BlogPost.astro | 2 | ||||
| -rw-r--r-- | website/src/layouts/MicrologPost.astro | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/website/public/css/blog.css b/website/public/css/post.css index 436c13e..436c13e 100644 --- a/website/public/css/blog.css +++ b/website/public/css/post.css diff --git a/website/src/layouts/BlogPost.astro b/website/src/layouts/BlogPost.astro index a1d8a25..620bf81 100644 --- a/website/src/layouts/BlogPost.astro +++ b/website/src/layouts/BlogPost.astro @@ -18,7 +18,7 @@ const canonicalUrl = new URL(Astro.url.pathname, Astro.site); <html lang="en"> <head> <BaseHead title={`${title} | joeac’s blog`} description={description} /> - <link rel="stylesheet" href="/css/blog.css"> + <link rel="stylesheet" href="/css/post.css"> </head> <body> diff --git a/website/src/layouts/MicrologPost.astro b/website/src/layouts/MicrologPost.astro index b5572f2..fa93011 100644 --- a/website/src/layouts/MicrologPost.astro +++ b/website/src/layouts/MicrologPost.astro @@ -16,7 +16,7 @@ const canonicalUrl = new URL(Astro.url.pathname, Astro.site); <html lang="en"> <head> <BaseHead title={`${title} | joeac’s microlog`} description={`${title} | joeac's microlog`} /> - <link rel="stylesheet" href="/css/blog.css"> + <link rel="stylesheet" href="/css/post.css"> </head> <body> |
