Skip to content

Commit

Permalink
chore: remove <time> tag
Browse files Browse the repository at this point in the history
  • Loading branch information
luigieai committed May 31, 2023
1 parent f09f3da commit 20389a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/PostLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let formattedPubDate = `Posted: ${pubDate.getMonth()}/${pubDate.getDay()}/${pubD
<article class="prose prose-lg max-w-[750px] prose-img:mx-auto">
{heroImage && <img src={heroImage} alt={title} class="w-full mb-6" />}
<h1 class="title my-2 text-4xl font-bold">{title}</h1>
{pubDate && <time>{formattedPubDate}</time>}
{pubDate && <p>{formattedPubDate}</p>}
{
updatedDate && (
<div>
Expand Down

0 comments on commit 20389a4

Please sign in to comment.