remove tags from article header (#6)

This commit is contained in:
Troy 2024-12-28 16:19:26 +00:00 committed by GitHub
parent 01f721f938
commit 4487fb0945
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 50 additions and 68 deletions

View file

@ -18,7 +18,7 @@ const { collection } = Astro.props;
alt={collection.data.image.alt}
title={collection.data.title}
loading="eager"
class="absolute inset-0 h-full w-full object-cover duration-300 ease-in-out group-hover:scale-105"
class="absolute inset-0 h-full w-full object-cover transition-transform duration-300 group-hover:scale-105"
fit="cover"
/>
<div
@ -40,7 +40,7 @@ const { collection } = Astro.props;
{
collection.data.collection ? (
<span>
<FormattedDate date={collection.data.date} /> &bull; Collection
<FormattedDate date={collection.data.date} /> (Collection)
</span>
) : (
<FormattedDate date={collection.data.date} />