archive page pagination/redesign

This commit is contained in:
2023-11-26 11:47:09 -05:00
parent 0e8ec59e49
commit 5c547fec9a
3 changed files with 63 additions and 5 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const { tags } = Astro.props
<div class="tag-container">
{
tags.sort().map((tag: string) => (
<a class="tag" href={`/archive/${tag}`}>
<a class="tag" href={`/archive/${tag}?page=1`}>
{tag}
</a>
))