From c33f18148f438568c9b9a6d3ce0ca971b7b0e455 Mon Sep 17 00:00:00 2001 From: mudkipdev Date: Sun, 23 Jun 2024 20:46:54 -0600 Subject: [PATCH] include bio in embed --- src/layouts/Page.astro | 8 ++++---- src/pages/blog/[...slug].astro | 6 +++--- src/pages/index.astro | 11 +++++++++-- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro index ce079a1..c64a03a 100644 --- a/src/layouts/Page.astro +++ b/src/layouts/Page.astro @@ -11,10 +11,10 @@ const { title } = Astro.props; rel="alternate" type="application/rss+xml" title="mudkip's blog" href="/rss.xml" /> - - - - + + + + diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index 0d69c99..cbba24b 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -24,9 +24,9 @@ const stripped = await stripContent(post); --- - - - + + + diff --git a/src/pages/index.astro b/src/pages/index.astro index 3d27176..e1385d2 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,11 +1,18 @@ --- import Page from "@layouts/Page.astro"; import Footer from "@components/Footer.astro"; + +const bio = "i'm a software developer and security researcher, my interests include programming, video games, and music."; --- + + + + +

- i'm a software developer and security researcher, my interests include programming, video games, and music. -
(i also use NixOS btw) + {bio}
+ (i also use NixOS btw)