A community-maintained directory of Bluesky Personal Data Servers (PDS).
at main 1.4 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.0"> 6 <title>Bluesky PDS Directory</title> 7</head> 8<body> 9 <h1>Bluesky PDS Directory</h1> 10 <p>Community-maintained database of Personal Data Servers</p> 11 <p><b>NOTE: Data on this site is sourced from <a href="https://pdsls.dev">PDSls</a></b></p> 12 <p><a href="https://tangled.org/madebydanny.uk/pdslist#adding-your-pds">Add a PDS</a></p> 13 14 <div id="loading"> 15 <p>Loading database...</p> 16 </div> 17 18 <div id="content" style="display: none;"> 19 <p>Total Servers: <strong id="server-count">0</strong></p> 20 21 <table id="pds-table" border="1" cellpadding="10" cellspacing="0"> 22 <thead> 23 <tr> 24 <th>URL</th> 25 <th>Handles</th> 26 <th>Maintainer</th> 27 <th>Email</th> 28 <th>Invite Code Required</th> 29 <th>Terms</th> 30 <th>Privacy</th> 31 </tr> 32 </thead> 33 <tbody id="table-body"> 34 </tbody> 35 </table> 36 37 <div id="no-data" style="display: none;"> 38 <p>No PDS servers found.</p> 39 </div> 40 </div> 41 42 <script src="app.js"></script> 43</body> 44</html>