Skip to content

Commit

Permalink
fix: Remove redundant 'min read' from Blog Post
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosalm committed Oct 23, 2024
1 parent 8d0e974 commit d2ebcba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/BlogLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const hasDiscussion = content.discussion && content.discussion_link;
<time datetime={content.pubDate}>
{new Date(content.pubDate).toLocaleDateString('en-us', { year:"numeric", month:"long", day:"numeric"})}
</time>
<span class="reading-time">{content.minutesRead} min read</span>
<span class="reading-time">{content.minutesRead}</span>
</p> {hasDiscussion && (
<p class="discussion">
<i class="fa-solid fa-comment"></i>
Expand Down

0 comments on commit d2ebcba

Please sign in to comment.