This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-astro/src/components/blocks/links/RecentLinks.astro

26 lines
565 B
Text

---
const { links } = Astro.props;
import { IconLink } from '@tabler/icons-react';
---
{links && links.length > 0 && (
<article>
<h3>
<a class="link" href="/links">
<IconLink size={24} />
Recent links
</a>
</h3>
<ul>
{links.slice(0, 5).map((link) => (
<li>
<a href={link.link} title={link.title}>
{link.title}
</a>
{link.author && (
<> via <a href={link.author.url}>{link.author.name}</a></>
)}
</li>
))}
</ul>
</article>
)}