aboutsummaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-02-04 12:30:02 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-02-04 12:30:02 -0500
commit71093a4c88ed41bd51a3387f1e91c7ee05f2203c (patch)
treed45138d7e3a7afc52c11fff65f77f3d040f2ffe8 /src/layouts
parent27153476429c4a85630dedcf940a50089ea02151 (diff)
downloadpersonal-website-71093a4c88ed41bd51a3387f1e91c7ee05f2203c.tar.gz
personal-website-71093a4c88ed41bd51a3387f1e91c7ee05f2203c.tar.bz2
personal-website-71093a4c88ed41bd51a3387f1e91c7ee05f2203c.zip
Almost finished implementing guestbook; More consistency in cards
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/Default.astro3
-rw-r--r--src/layouts/PageMarkdown.astro1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro
index db94dfd..4f3c87a 100644
--- a/src/layouts/Default.astro
+++ b/src/layouts/Default.astro
@@ -42,8 +42,9 @@ const date = new Date();
<div transition:name="main" transition:animate="fade">
<slot />
<footer>
- <p><a href="https://github.com/Alee14/personal-website">Made with {Astro.generator} and Hosted on Vercel</a></p>
+ <p>Made with {Astro.generator} and Hosted on Vercel</p>
<p>Copyright &copy; {date.getFullYear()} Andrew Lee</p>
+ <p><a href="https://github.com/Alee14/personal-website">View source code.</a></p>
</footer>
</div>
</body>
diff --git a/src/layouts/PageMarkdown.astro b/src/layouts/PageMarkdown.astro
index 89bd0f8..4553661 100644
--- a/src/layouts/PageMarkdown.astro
+++ b/src/layouts/PageMarkdown.astro
@@ -1,6 +1,7 @@
---
import Layout from './Default.astro';
const { frontmatter } = Astro.props;
+import '../styles/cards.css';
---
<Layout title=`${frontmatter.title} - Andrew Lee` description={frontmatter.description}>