summaryrefslogtreecommitdiff
path: root/www/src/components/BlogHead.astro
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@matthewphillips.info> 2021-07-27 12:32:18 -0400
committerGravatar GitHub <noreply@github.com> 2021-07-27 12:32:18 -0400
commit918e3831f5078e79c288c81d04481186dfefeec0 (patch)
treef46b743884e6f39385aaad9412bf0fb7407d0df5 /www/src/components/BlogHead.astro
parent365f3bd230cb4633b63a44d14fcf897512c7864b (diff)
downloadastro-918e3831f5078e79c288c81d04481186dfefeec0.tar.gz
astro-918e3831f5078e79c288c81d04481186dfefeec0.tar.zst
astro-918e3831f5078e79c288c81d04481186dfefeec0.zip
Add a release post on Astro 0.18 (#869)
* Add a release post on Astro 0.18 * Add a better description * Add links to the post * More attention grabbing intro * Add additional links in the post * Update www/src/pages/blog/astro-018.astro Co-authored-by: Caleb Jasik <calebjasik@jasik.xyz> * try using responsive images to improve lighthouse * Adds an overview section in the intro * freds edits * Update a couple of images and minor edits Co-authored-by: Caleb Jasik <calebjasik@jasik.xyz> Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'www/src/components/BlogHead.astro')
-rw-r--r--www/src/components/BlogHead.astro7
1 files changed, 7 insertions, 0 deletions
diff --git a/www/src/components/BlogHead.astro b/www/src/components/BlogHead.astro
new file mode 100644
index 000000000..866929725
--- /dev/null
+++ b/www/src/components/BlogHead.astro
@@ -0,0 +1,7 @@
+---
+import BaseHead from './BaseHead.astro';
+
+const { title, description, permalink } = Astro.props;
+---
+<BaseHead title={title} description={description} permalink={permalink} />
+<link rel="stylesheet" href="/blog.css" /> \ No newline at end of file