SanYeCao-blog/src/components/Posts/PostItem.astro

23 lines
395 B
Text
Raw Normal View History

2026-03-24 17:33:01 +00:00
---
const data=Astro.props
---
<li>
<a href={data.url} class="post-item">
<span>{data.title}</span>
<span>{data.date}</span>
</a>
</li>
<style>
.post-item {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
text-decoration: none;
}
.post-item span:last-child {
white-space: nowrap;
}
</style>