feat(tags): this adds support for post, link, book, show and movie tags with a tag list view and per tag pages

This commit is contained in:
Cory Dransfeldt 2025-04-16 18:59:47 -07:00
parent 3d866262ca
commit 6fdc0b56b9
No known key found for this signature in database
35 changed files with 500 additions and 70 deletions

View file

@ -257,10 +257,7 @@ a {
display: inline-flex;
align-items: center;
gap: var(--spacing-xs);
&:not(:has(+ h1, + h2, + h3)) {
margin-bottom: var(--spacing-base);
}
margin-bottom: var(--spacing-base);
&:is(:hover, :focus, :active) svg {
transform: var(--transform-icon-default);
@ -350,7 +347,13 @@ hr {
time {
color: var(--gray-dark);
font-size: var(--font-size-sm);
line-height: var(--sizing-sm);
}
.tags {
font-size: var(--font-size-sm);
display: flex;
flex-wrap: wrap;
gap: var(--spacing-sm);
}
article {
@ -366,6 +369,10 @@ article {
h3 {
margin-top: 0;
&:has(+ .tags) {
margin-bottom: 0;
}
}
aside {