diff options
author | 2021-11-24 11:10:12 -0800 | |
---|---|---|
committer | 2021-11-24 11:10:12 -0800 | |
commit | 8d934059f8d56d3d304cb9575c907654bf03b3ea (patch) | |
tree | 35654e8f6907dc1f39b5bf62afdb1647da59ef38 /examples/blog/src/pages/index.astro | |
parent | ec2e5c9922560667a4f9959ab7c3c9ab5c3dacfe (diff) | |
download | astro-8d934059f8d56d3d304cb9575c907654bf03b3ea.tar.gz astro-8d934059f8d56d3d304cb9575c907654bf03b3ea.tar.zst astro-8d934059f8d56d3d304cb9575c907654bf03b3ea.zip |
move styles to src (#2003)
Diffstat (limited to 'examples/blog/src/pages/index.astro')
-rw-r--r-- | examples/blog/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/pages/index.astro b/examples/blog/src/pages/index.astro index f96f5e049..cd839d382 100644 --- a/examples/blog/src/pages/index.astro +++ b/examples/blog/src/pages/index.astro @@ -27,7 +27,7 @@ allPosts = allPosts.sort((a, b) => new Date(b.publishDate).valueOf() - new Date( <html lang="en"> <head> <BaseHead title={title} description={description} permalink={permalink} /> - <link rel="stylesheet" href="/blog.css" /> + <link rel="stylesheet" href={Astro.resolve('../styles/blog.css')} /> <style> header { |