forked from
devins.page/devins.page
my website, hosted on wisp.place
1---
2const { pubDate, categories } = Astro.props;
3---
4
5<p
6 class="not-prose text-xs font-mono text-dp-text-light/80 dark:text-dp-text-dark/80"
7>
8 {
9 pubDate && (
10 <time datetime={pubDate.toISOString()}>
11 {pubDate.toLocaleDateString()}
12 </time>
13 )
14 }
15 {categories?.length && ` • ${categories.join(", ")}`}
16</p>