recursively fetch quotes
0
fork

Configure Feed

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

at main 25 lines 628 B view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <title>Quote tree viewer</title> 7 <meta name="color-scheme" content="dark light" /> 8 <style> 9 a { 10 display: block; 11 } 12 </style> 13 </head> 14 <body> 15 <h1>Quote tree viewer</h1> 16 <p> 17 Put in a bluesky url and see its quotes as well as the quotes of 18 those and so on 19 </p> 20 <form id="form"> 21 <input type="url" id="input" placeholder="at://did:web:example.com/app.bsky.feed.post/recordkey" /> 22 </form> 23 <script type="module" src="/index.ts"></script> 24 </body> 25</html>