diff options
Diffstat (limited to 'src/layouts')
| -rw-r--r-- | src/layouts/Default.astro | 3 | ||||
| -rw-r--r-- | src/layouts/PageMarkdown.astro | 1 |
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 © {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}> |
