my website, hosted on wisp.place
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 4a8d3f176971d2b545dfb39e74d4eaffc75d4438 16 lines 261 B view raw
1--- 2const { pubDate, categories } = Astro.props; 3--- 4 5<p> 6 <small> 7 { 8 pubDate && ( 9 <time datetime={pubDate.toISOString()}> 10 {pubDate.toLocaleDateString()} 11 </time> 12 ) 13 } 14 {categories?.length && ` ${categories.join(", ")}`} 15 </small> 16</p>