mirror of
https://git.aria.coffee/BuyMyAria/aria.coffee.git
synced 2025-06-16 13:19:56 +00:00
12 lines
294 B
Text
12 lines
294 B
Text
---
|
|
import Partition from "./Partition.astro";
|
|
|
|
const { name, date, tags, link } = Astro.props;
|
|
---
|
|
<Partition>
|
|
<h2><a class="nav-btn text-2xl" href={link} target="_blank">{name}</a></h2>
|
|
<p>Date: {date}</p>
|
|
<p>Tags: <sub>{tags}</sub></p>
|
|
<hr/>
|
|
<p><slot /></p>
|
|
</Partition>
|