Experiment to rebuild Diffuse using web applets.
0

Configure Feed

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

at main 353 B View raw
1--- 2const { title } = Astro.props; 3--- 4 5<html lang="en"> 6 <head> 7 <meta charset="UTF-8" /> 8 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 9 <meta name="color-scheme" content="light dark" /> 10 <link rel="manifest" href="manifest.json" /> 11 12 <title>{title}</title> 13 </head> 14 <body> 15 <slot /> 16 </body> 17</html>