summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/BaseHead.astro
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@matthewphillips.info> 2022-01-14 12:11:56 -0500
committerGravatar GitHub <noreply@github.com> 2022-01-14 12:11:56 -0500
commit92532b88820bc45f3f02bca0054e8433c3f7a743 (patch)
tree6e5c9ecaa9065ecbe7d77523b49100e700bb9e27 /examples/blog/src/components/BaseHead.astro
parent0257419af8c8173e1742b338de462d44c0d78f90 (diff)
downloadastro-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/components/BaseHead.astro')
-rw-r--r--examples/blog/src/components/BaseHead.astro5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro
index e5745e196..f39f77338 100644
--- a/examples/blog/src/components/BaseHead.astro
+++ b/examples/blog/src/components/BaseHead.astro
@@ -1,4 +1,6 @@
---
+
+
export interface Props {
title: string;
description: string;
@@ -34,3 +36,6 @@ const { title, description, permalink } = Astro.props;
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap" />
+<style global>
+ @import "../styles/blog.css";
+</style>