Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

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

at master 22 lines 1.2 kB 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" /> 6 <title>atbbs</title> 7 <meta name="description" content="Decentralized forums on the AT Protocol." /> 8 <meta property="og:title" content="atbbs" /> 9 <meta property="og:description" content="Decentralized forums on the AT Protocol." /> 10 <meta property="og:image" content="/og.png" /> 11 <meta property="og:type" content="website" /> 12 <meta name="theme-color" content="#fafafa" media="(prefers-color-scheme: light)" /> 13 <meta name="theme-color" content="#0a0a0a" media="(prefers-color-scheme: dark)" /> 14 <link rel="icon" href="/favicon.svg" type="image/svg+xml" /> 15 <link rel="apple-touch-icon" href="/icon-192.png" /> 16 <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;700&display=swap" /> 17 </head> 18 <body class="bg-neutral-950 text-neutral-400 text-sm min-h-screen antialiased flex flex-col" style="font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;"> 19 <div id="root"></div> 20 <script type="module" src="/src/main.tsx"></script> 21 </body> 22</html>