37 lines
1004 B
Plaintext
37 lines
1004 B
Plaintext
---
|
|
import { slugifyStr } from "@/utils/slugify";
|
|
import type { CollectionEntry } from "astro:content";
|
|
import { getPath } from "@/utils/getPath";
|
|
import Datetime from "./Datetime.astro";
|
|
|
|
export interface Props extends CollectionEntry<"blog"> {
|
|
variant?: "h2" | "h3";
|
|
}
|
|
|
|
const { variant = "h2", data, id, filePath } = Astro.props;
|
|
|
|
const { title, description, pubDatetime, modDatetime, timezone } = data;
|
|
|
|
const headerProps = {
|
|
style: { viewTransitionName: slugifyStr(title) },
|
|
class: "text-lg font-medium decoration-dashed hover:underline",
|
|
};
|
|
---
|
|
|
|
<li class="my-6">
|
|
<a
|
|
href={getPath(id, filePath)}
|
|
class="inline-block text-lg font-medium text-accent decoration-dashed underline-offset-4 focus-visible:no-underline focus-visible:underline-offset-0"
|
|
>
|
|
{
|
|
variant === "h2" ? (
|
|
<h2 {...headerProps}>{title}</h2>
|
|
) : (
|
|
<h3 {...headerProps}>{title}</h3>
|
|
)
|
|
}
|
|
</a>
|
|
<Datetime {pubDatetime} {modDatetime} {timezone} />
|
|
<p>{description}</p>
|
|
</li>
|