2026-03-31 12:56:57 +02:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { BlogPostTag, type BlogPostLink } from "../../routes/blog/posts";
|
|
|
|
|
|
|
|
|
|
let {
|
|
|
|
|
posts,
|
|
|
|
|
}: {
|
|
|
|
|
posts: BlogPostLink[];
|
|
|
|
|
} = $props();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div class="entry-container">
|
|
|
|
|
{#each posts as post}
|
2026-03-31 13:34:09 +02:00
|
|
|
<a class="entry" href="{post.key}">
|
|
|
|
|
<div class="entry-banner-container">
|
|
|
|
|
<img class="entry-banner" src="{post.key}/{post.post.banner}" alt="{post.post.bannerAlt}">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="entry-text-container">
|
|
|
|
|
<p class="entry-title">{post.post.title}</p>
|
|
|
|
|
<p class="entry-description">{post.post.description}</p>
|
|
|
|
|
<div class="entry-tag-container">
|
|
|
|
|
{#each post.post.tags as tag}
|
2026-03-31 14:48:38 +02:00
|
|
|
<span class="post-tag">{tag}</span>
|
2026-03-31 13:34:09 +02:00
|
|
|
{/each}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
2026-03-31 12:56:57 +02:00
|
|
|
{/each}
|
2026-03-31 13:34:09 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.entry-container {
|
|
|
|
|
display: grid;
|
|
|
|
|
/* gap: 8px; */
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
transition: background-color var(--duration-animation) var(--anim-curve),
|
|
|
|
|
border-color var(--duration-animation) var(--anim-curve),
|
|
|
|
|
backdrop-filter var(--duration-blur) var(--anim-curve);
|
|
|
|
|
border: var(--border-dash-size) var(--border-style) transparent;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry:hover {
|
|
|
|
|
background-color: var(--color-background-highlight-alt);
|
|
|
|
|
border-color: var(--color-highlight-alt);
|
|
|
|
|
backdrop-filter: blur(var(--blur-radius-background));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry:hover .entry-banner {
|
|
|
|
|
scale: 1.2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-banner-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 160px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-banner {
|
|
|
|
|
width: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
transition: scale var(--duration-animation) var(--anim-curve);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-text-container {
|
|
|
|
|
/* padding: 0 4px 4px ; */
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-text-container * {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-title {
|
|
|
|
|
font-family: var(--font-mono);
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
line-height: 1.4rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-description {
|
|
|
|
|
font-size: 1.0rem;
|
|
|
|
|
line-height: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-tag-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
}
|
|
|
|
|
</style>
|