Change spacing, underline summary heading, tag URLs + spacing

This commit is contained in:
2023-11-26 08:02:39 -06:00
parent d494391cee
commit a8db91f389

View File

@@ -27,11 +27,13 @@ const { url, date, title, tags, description } = Astro.props;
</a> </a>
</div> </div>
<div class="post_combo"> <div class="post_combo">
<h2> <h2 class="underline mr-1"><a href={url}>{ title }</a></h2>
<a href={url}>{ title }</a> <i class="space-x-2">
</h2> {tags.map((tag) => (
<i> <a href={`/tags/${tag}`}>
{ tags.join(" ")} { tag }
</a>
))}
</i> </i>
</div> </div>
{ description } { description }