My personal website.
1---
2const { url, title, time } = Astro.props;
3---
4
5<a href={url}>
6 <article>
7 <h3>{title}</h3>
8 <time class="barcodetext" datetime={time}>{time}</time>
9 </article>
10</a>
11
12<style>
13 a {
14 display: block;
15 border: 10px double;
16 text-decoration: none;
17 }
18
19 article {
20 padding: 13px 15px;
21 }
22
23 time {
24 font-weight: bold;
25 font-size: 2rem;
26 }
27</style>