[READ-ONLY] Mirror of https://github.com/flo-bit/bluesky-particles. flo-bit.dev/bluesky-visualizers/particles
0

Configure Feed

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

bluesky-particles / index.html
663 B 25 lines
1<!doctype html> 2<html lang="en"> 3 <head> 4 <title>bluesky particles</title> 5 <meta charset="utf-8" /> 6 <meta 7 name="viewport" 8 content="width=device-width, initial-scale=1.0, user-scalable=no" 9 /> 10 11 <link 12 rel="icon" 13 href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🦋</text></svg>" 14 /> 15 16 <link rel="stylesheet" href="./index.css" /> 17 </head> 18 19 <body class="bg-black"> 20 <!-- redirect to /bluesky-visualizers/particles --> 21 <script> 22 window.location.href = "/bluesky-visualizers/particles"; 23 </script> 24 </body> 25</html>