summaryrefslogtreecommitdiff
path: root/www/src
diff options
context:
space:
mode:
authorGravatar AsyncBanana <58297401+AsyncBanana@users.noreply.github.com> 2021-10-13 16:21:35 -0400
committerGravatar GitHub <noreply@github.com> 2021-10-13 16:21:35 -0400
commit3aafb58d60afe03f2c4fef036452451fb3f399da (patch)
tree8b10f359699b93fab24eaed3b64127ccc3bfe35f /www/src
parent660481444b7f6ca540771d1aa70a27346db8554f (diff)
downloadastro-3aafb58d60afe03f2c4fef036452451fb3f399da.tar.gz
astro-3aafb58d60afe03f2c4fef036452451fb3f399da.tar.zst
astro-3aafb58d60afe03f2c4fef036452451fb3f399da.zip
Change publish date el to be more accessible (#1522)
Diffstat (limited to 'www/src')
-rw-r--r--www/src/components/BlogPostPreview.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/src/components/BlogPostPreview.astro b/www/src/components/BlogPostPreview.astro
index 235ca6371..fc99d877a 100644
--- a/www/src/components/BlogPostPreview.astro
+++ b/www/src/components/BlogPostPreview.astro
@@ -11,7 +11,7 @@ const { title, publishDate, href } = Astro.props;
---
<article class="post-preview">
<header>
- <h3 class="publish-date">{publishDate}</h3>
+ <p class="publish-date">{publishDate}</p>
<a href={href}><h1 class="title">{title}</h1></a>
</header>
<main>