From 65654318672a9139c7518ca5f784ce110f0108fa Mon Sep 17 00:00:00 2001
From: MeowcaTheoRange
Date: Mon, 12 Feb 2024 21:02:26 -0600
Subject: [PATCH] She responds to the spam emails
---
embeds/nav.html | 1 +
views/links/scripts/data_get_links.js | 2 +-
views/qna/index.html | 3 +--
views/styles/myapp.css | 2 +-
views/whois/index.html | 30 +++++++++++++++++++++++++
views/whois/scripts/data_get_members.js | 13 +++++++++++
6 files changed, 47 insertions(+), 4 deletions(-)
create mode 100644 views/whois/index.html
create mode 100644 views/whois/scripts/data_get_members.js
diff --git a/embeds/nav.html b/embeds/nav.html
index 8080b2f..84e49d4 100644
--- a/embeds/nav.html
+++ b/embeds/nav.html
@@ -4,5 +4,6 @@
FAQ
Projects
Links
+ Who are we?
diff --git a/views/links/scripts/data_get_links.js b/views/links/scripts/data_get_links.js
index 2b7f057..ed40399 100644
--- a/views/links/scripts/data_get_links.js
+++ b/views/links/scripts/data_get_links.js
@@ -1,5 +1,5 @@
const data_get = document.getElementById("data_get");
-fetch_ask("https://pronouns.cc/api/v1/users/MeowcaTheoRange")
+fetch_ask("https://pronouns.cc/api/v1/users/clhd8desmggedm3q1t3g")
.then((x) => x.json())
.then((user) => {
data_get.innerHTML = user.links.reduce(
diff --git a/views/qna/index.html b/views/qna/index.html
index 074808a..06f9ac7 100644
--- a/views/qna/index.html
+++ b/views/qna/index.html
@@ -28,12 +28,11 @@
Genuinely, why is this page so cryptic? Is this an ARG?
There is no ARG. This is just how we have fun :3
- Check pronouns.cc for more info.
diff --git a/views/styles/myapp.css b/views/styles/myapp.css
index 6cb1fde..5a6b27e 100644
--- a/views/styles/myapp.css
+++ b/views/styles/myapp.css
@@ -51,7 +51,7 @@
.nav p {
display: grid;
- grid-template-columns: 1fr 1fr 1fr 1fr;
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
gap: 1em;
}
diff --git a/views/whois/index.html b/views/whois/index.html
new file mode 100644
index 0000000..f0c6f7c
--- /dev/null
+++ b/views/whois/index.html
@@ -0,0 +1,30 @@
+
+
+
+
+ abtmtr.link
+
+
+
+
+
+
+ Who are we?
+ <$ nav.html $>
+
+
+
+
+
+ We're abtmtr.link.
+ abtmtr.link is an unprofessional consulting-firm/open-source-project-manager ran by one person who is actually more.
+ We're not an actual company. Don't try to call us. You can email us, however.
+
+
+ Getting member indexes...
+
+
+
+
+
+
diff --git a/views/whois/scripts/data_get_members.js b/views/whois/scripts/data_get_members.js
new file mode 100644
index 0000000..be79853
--- /dev/null
+++ b/views/whois/scripts/data_get_members.js
@@ -0,0 +1,13 @@
+fetch_ask("https://pronouns.cc/api/v1/users/clhd8desmggedm3q1t3g")
+ .then((x) => x.json())
+ .then((data) => {
+ data_get.innerHTML = data.members.reduce((html, member) => (
+ html +
+ `${member.display_name} ${member.pronouns.map(x => x.pronouns.split("/")[0]).join("/")}
+
+ ${member.bio.replaceAll("\n", "
")}
+ Signature: ${member.name}
`
+ ), "");
+ });