mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-04-01 17:50:13 +00:00
18 lines
401 B
Text
18 lines
401 B
Text
---
|
|
import PostItem from "./PostItem.astro";
|
|
|
|
const allPosts = Object.values(import.meta.glob('@/pages/posts/*.md', { eager: true }));
|
|
---
|
|
|
|
<ul>
|
|
{allPosts.map((post: any) => {
|
|
const formattedDate = new Date(post.frontmatter.pubDate)
|
|
.toISOString()
|
|
.split("T")[0];
|
|
|
|
return (
|
|
<PostItem url={post.url} title={post.frontmatter.title} date={formattedDate}/>
|
|
);
|
|
})}
|
|
</ul>
|
|
|