mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-07-03 23:51:26 +00:00
23 lines
395 B
Text
23 lines
395 B
Text
|
|
---
|
||
|
|
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>
|