diff options
author | 2022-01-14 12:11:56 -0500 | |
---|---|---|
committer | 2022-01-14 12:11:56 -0500 | |
commit | 92532b88820bc45f3f02bca0054e8433c3f7a743 (patch) | |
tree | 6e5c9ecaa9065ecbe7d77523b49100e700bb9e27 /examples/blog/src/pages/index.astro | |
parent | 0257419af8c8173e1742b338de462d44c0d78f90 (diff) | |
download | astro-92532b88820bc45f3f02bca0054e8433c3f7a743.tar.gz astro-92532b88820bc45f3f02bca0054e8433c3f7a743.tar.zst astro-92532b88820bc45f3f02bca0054e8433c3f7a743.zip |
Fixes for blog and docs examples (#2373)
* Fixes for blog and docs examples
* Adds a changeset
* Upgrade the compiler version
* Use a global style tag
* Skip on windows temporarily
Diffstat (limited to 'examples/blog/src/pages/index.astro')
-rw-r--r-- | examples/blog/src/pages/index.astro | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/blog/src/pages/index.astro b/examples/blog/src/pages/index.astro index 9a2178ed0..c7bc3ea32 100644 --- a/examples/blog/src/pages/index.astro +++ b/examples/blog/src/pages/index.astro @@ -28,7 +28,6 @@ allPosts = allPosts.sort((a, b) => new Date(b.publishDate).valueOf() - new Date( <html lang="en"> <head> <BaseHead {title} {description} {permalink} /> - <link rel="stylesheet" href={Astro.resolve('../styles/blog.css')} /> <style> header { |