Skip to content

Commit

Permalink
fix index click area
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewDTR committed Nov 20, 2024
1 parent 72e51a5 commit 6f23fdc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,17 @@ allPosts.sort(
<ul class="blog-list">
{
allPosts.slice(0, 3).map((post) => (
<li class="blog-post-item">
<a href={post.url} class="blog-post-link">
<a href={post.url} class="blog-post-link">
<li class="blog-post-item">
{post.frontmatter.bestof && (
<i class="fa fa-star" style="padding-right: 2px;" />
)}
{post.frontmatter.title} -{" "}
<i>
{post.frontmatter.subtitle} | {post.frontmatter.pubDate}
</i>
</a>
</li>
</li>
</a>
))
}
</ul>
Expand Down

0 comments on commit 6f23fdc

Please sign in to comment.