diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-05 21:41:14 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-06 22:40:07 +0100 |
| commit | 9780cff82196e532f50a4d2c0bf8b41b7e284637 (patch) | |
| tree | fadda4fd607c8ac714e62f08fe8b3c45ddcf3d9f /src/layouts/Layout.astro | |
| parent | 3098c31049e17dfdcdf451e843f6c4bdcf5b2fa1 (diff) | |
Fixes stylesheet links
Diffstat (limited to 'src/layouts/Layout.astro')
| -rw-r--r-- | src/layouts/Layout.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index b17de4d..360acfb 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -20,8 +20,8 @@ const t = translate(locale); <meta name="description" content={ t(site, 'description') } /> <meta name="viewport" content="width=device-width" /> <link rel="icon" href="/favicon.ico" /> - <link rel="stylesheet" href="/public/normalize.css" /> - <link rel="stylesheet" href="/public/main.css" /> + <link rel="stylesheet" href="/normalize.css" /> + <link rel="stylesheet" href="/main.css" /> <meta name="generator" content={Astro.generator} /> <title>{ title } | { t(site, 'title') }</title> </head> |
