From edc3b33b694abd8992a7c7b6d7c2531d92678ad8 Mon Sep 17 00:00:00 2001 From: afterlifepro Date: Wed, 5 Nov 2025 19:19:05 +0000 Subject: [PATCH] improve the accessibility of the site --- index.html | 379 +++++++++++++++++++++++----------------------- katproto_users.ts | 5 +- 2 files changed, 195 insertions(+), 189 deletions(-) diff --git a/index.html b/index.html index f19922a..6cc6107 100644 --- a/index.html +++ b/index.html @@ -1,190 +1,197 @@ - + - - - - - - - - - - - - - - - - - katproto - - - - - - -
-
- ,8, - d8b - 888 - __ , 888 - d88888b. -.\,- 888 - `Y8888b."```"-888 - /`" `8\ - | | - | | - | | - __ / O _ O \ - /` '.\ '-' / - \ .'. .; - '. .' `"""""""` \ - `\ /.-.| - `| |` | - | \___/ - ;-.._______..-; - jgs / | \ - \___,---'---,___/ -
-

katproto

- this is an at protocol personal data server (aka, an atproto PDS). - more specifically, it's kat's PDS! -
- -
-
- -

users

- -
-
- -
- - - - - -

status

- -

Current status: Loading...

- -

off-site status page in case the PDS goes down; in other words,
- this page will remain up even when the PDS is down.

- -

status page

- -
- -

credits

- -

- PDS: github.com/bluesky-social/pds
- dynamic user list: most of the code here
-

- -
- -

source

- -

- index page: tangled.org/@katproto.girlonthemoon.xyz/katproto_index -

-
- + + + + + + + + + + + + + + + + + katproto + + + + +
+
+
+
+                   ,8,
+                   d8b
+                   888
+    __        ,    888
+  d88888b.   -.\,- 888
+     `Y8888b."```"-888
+         /`"       `8\
+        |             |
+        |             |
+        |             |
+    __  /  O   _   O  \
+  /`  '.\     '-'     /
+  \     .'.         .;
+   '. .'   `"""""""`  \
+     `\            /.-.|
+       `|         |`   |
+        |          \___/
+        ;-.._______..-;
+  jgs  /       |       \
+       \___,---'---,___/
+
+
+

katproto

+

+ this is an at protocol personal data server (aka, an atproto + PDS). more specifically, it's + kat's PDS! +

+
+ +
+ +
+
+

users

+
    + + Loading... +
+ + +
+ +
+ +
+

status

+

Current status: Loading...

+

+ off-site status page in case the PDS goes down; in other words, this + page will remain up even when the PDS is down. +

+

+ status page +

+
+ +
+ +
+

credits

+

+ PDS: + github.com/bluesky-social/pds
+ dynamic user list: + most of the code here
+

+
+

source

+

+ index page: + tangled.org/@katproto.girlonthemoon.xyz/katproto_index +

+
+
+ diff --git a/katproto_users.ts b/katproto_users.ts index e3ffeec..684a1e3 100644 --- a/katproto_users.ts +++ b/katproto_users.ts @@ -36,13 +36,12 @@ async function getKatprotoUsers() { await Promise.all( users.map( async (x) => - `${await x.display}` + `
  • ${await x.display}
  • ` ) ) ); - const fin = Array.from(users).join("
    "); - return await fin; + return users.join(""); } async function checkStatus() { -- 2.51.1