mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-21 07:38:48 +03:00
50 lines
924 B
Plaintext
50 lines
924 B
Plaintext
---
|
|
import { type CollectionEntry } from "astro:content";
|
|
import dayjs from "dayjs";
|
|
|
|
type Props = {
|
|
readonly post: CollectionEntry<"blog">;
|
|
};
|
|
|
|
const { post } = Astro.props;
|
|
const { remarkPluginFrontmatter } = await post.render();
|
|
const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY");
|
|
---
|
|
|
|
<style lang="scss">
|
|
@import "../scss/_variables.scss";
|
|
|
|
a {
|
|
color: $colorText;
|
|
display: block;
|
|
padding-bottom: 3rem;
|
|
|
|
&:visited {
|
|
color: $colorText;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
color: $colorBlossom;
|
|
font-size: 1.25em;
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
div {
|
|
font-size: $fontSizeBase * 0.75;
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|
|
|
|
<a href={`/blog/${post.slug}`}>
|
|
<article>
|
|
<div>
|
|
<time datetime={post.data.pubDate.toISOString()}>{formattedDate}</time>
|
|
<span>•</span>
|
|
<span>{remarkPluginFrontmatter.minutesRead}</span>
|
|
</div>
|
|
<h2>{post.data.title}</h2>
|
|
<p>{post.data.description}</p>
|
|
</article>
|
|
</a>
|