commit | 21af95ad1689d7ef2097302d17957d919ba0057b | [log] [tgz] |
---|---|---|
author | Samuel Shuert <me@thecoded.prof> | Tue Apr 30 17:49:11 2024 -0400 |
committer | Samuel Shuert <coded@clicks.codes> | Tue Apr 30 21:50:34 2024 +0000 |
tree | 0b9aa9fbe022fed494281218016ed83e72ab5424 | |
parent | 959f099eafe05d2cece5359da1b3efc5c1c4a107 [diff] [blame] |
Finish Blog styling Change-Id: I0acdd0b4665c7abca22acf3d3131330039ca049c Reviewed-on: https://git.clicks.codes/c/Coded/thecoded.prof/+/680 Tested-by: Samuel Shuert <coded@clicks.codes> Reviewed-by: Samuel Shuert <coded@clicks.codes>
diff --git a/sites/blog/src/layouts/BlogPost.astro b/sites/blog/src/layouts/BlogPost.astro index 6b96dd7..1d87f76 100644 --- a/sites/blog/src/layouts/BlogPost.astro +++ b/sites/blog/src/layouts/BlogPost.astro
@@ -4,7 +4,7 @@ import Footer from '../components/Footer.astro'; import FormattedDate from '../components/FormattedDate.astro'; -type Props = CollectionEntry<'blog'>['data']; +type Props = CollectionEntry<'post'>['data']; const { title, description, pubDate, updatedDate } = Astro.props; ---