switch to fully static site

This commit is contained in:
2024-06-24 21:32:27 -04:00
parent 1707188201
commit 3947e06968
5 changed files with 20 additions and 6 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ const { tags } = Astro.props;
<div class="tag-container">
{
tags.sort().map((tag: Tag) => (
<a class="tag" href={`/archive/${tag}?page=1`}>
<a class="tag" href={`/archive/${tag}`}>
#{tag}
</a>
))