feat: Show tag count and fix tag wrapping #11

Merged
aniva merged 2 commits from post/tag into main 2024-10-11 00:47:21 -07:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 82d6c2f4c3 - Show all commits

View File

@ -12,7 +12,7 @@
<h1>Tags</h1>
<hr class="separator" />
<div id="catalog" class="content">
<div id="tags">
{#each allTags as tag}
<a class="tag" href="/tag/{tag}">{tag}</a>
{/each}
@ -20,7 +20,11 @@
<hr class="separator" />
<style>
#tags {
display: inline-block;
}
.tag {
display: inline-block;
margin-left: 1em;
margin-right: 1em;
}