Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

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

at s3 17 lines 300 B view raw
1--- 2const { items } = Astro.props; 3--- 4 5<ul> 6 { 7 items.map((item: { title: string; url: string }) => ( 8 <li> 9 {item.title.startsWith("(TODO) ") ? ( 10 <span>{item.title}</span> 11 ) : ( 12 <a href={item.url}>{item.title}</a> 13 )} 14 </li> 15 )) 16 } 17</ul>