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 @@

Who's "we"?

-

No answer.

+

No answer.

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.names.map(x => `

${x.value} (${x.status})

`).join("")} +
+

${member.bio.replaceAll("\n", "
")}

+

Signature: ${member.name}

` + ), ""); + });