···11+<!doctype html>
22+<html lang="en">
33+ <head>
44+ <meta charset="UTF-8" />
55+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
66+ <title>Quote tree viewer</title>
77+ <meta name="color-scheme" content="dark light" />
88+ <style>
99+ a {
1010+ display: block;
1111+ }
1212+ </style>
1313+ </head>
1414+ <body>
1515+ <h1>Quote tree viewer</h1>
1616+ <p>
1717+ Put in a bluesky url and see its quotes as well as the quotes of
1818+ those and so on
1919+ </p>
2020+ <form id="form">
2121+ <input type="url" id="input" placeholder="at://did:web:example.com/app.bsky.feed.post/recordkey" />
2222+ </form>
2323+ <script type="module" src="/index.ts"></script>
2424+ </body>
2525+</html>