From 45557cdd61850abc30959c39054d29b45fefb8c2 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 16 Dec 2021 23:06:28 +0100 Subject: It's finally done! --- htdocs/public/me/index.ejs | 57 ---------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 htdocs/public/me/index.ejs (limited to 'htdocs/public/me/index.ejs') diff --git a/htdocs/public/me/index.ejs b/htdocs/public/me/index.ejs deleted file mode 100644 index dd07c80..0000000 --- a/htdocs/public/me/index.ejs +++ /dev/null @@ -1,57 +0,0 @@ -<% global.title = lang.me.title; %> -<%- include(`${private}/header.ejs`) %> - -← <%- lang.global.back %> - -
-
-<% - - me = JSON.parse(child_process.execSync("curl https://pronouns.page/api/profile/get/Minteck").toString()); - - if (me.profiles[slang]) { - profile = me.profiles[slang]; - nlang = slang; - } else { - profile = me.profiles.en; - nlang = "en"; - } - -%> - -
- -
-
-

Minteck | <% if (slang !== "owo" && slang !== "uwu" && slang !== "0w0" && slang !== "qwq" && slang !== "-w-" && slang !== "_w_") { %>Mia<% } else {%>Myannnn~<% } %>

-

<%- lang.me.description %> | France
<%- lang.me.external %> pronouns.page

-
-
-
- -
-
-

<%- lang.me.items[0] %>

-
    - <% for (url of Object.keys(profile.pronouns)) { if (profile.pronouns[url] >= 0) { %> -
  • <%- url.split("/")[url.split("/").length - 1].replace("&", "/") %>
  • - <% }} %> -
-
-
-

<%- lang.me.items[1] %>

-
    - <% for (name of Object.keys(profile.names)) { if (profile.names[name] >= 0) { %> -
  • <%- name %>
  • - <% }} %> -
-
-
-

<%- lang.me.items[2] %>

- <% for (group of Object.keys(profile.words)) { for (word of Object.keys(profile.words[group])) { if (profile.words[group][word] >= 0) { %> -
  • style="font-weight: bold;"<% } %> <% if (profile.words[group][word] === 3) { %>style="opacity: .25;"<% } %> <% if (profile.words[group][word] === 2) { %>style="font-style: italic;"<% } %>><%- word %>
  • - <% }}} %> -
    -
    - -<%- include(`${private}/footer.ejs`) %> \ No newline at end of file -- cgit