From 2c9bbf18f9dcbc3fa91d5d74136abd59b64d0b9a Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 18 Feb 2022 13:28:42 +0100 Subject: Remove .bin from repo --- htdocs/public/me/index.ejs | 114 ++++++++++++++++++++++----------------------- 1 file changed, 57 insertions(+), 57 deletions(-) (limited to 'htdocs/public/me') diff --git a/htdocs/public/me/index.ejs b/htdocs/public/me/index.ejs index 33c30b5..629d4b2 100644 --- a/htdocs/public/me/index.ejs +++ b/htdocs/public/me/index.ejs @@ -1,57 +1,57 @@ -<% 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"; - } - -%> - -
- -
-
-

Mia "Minteck" Dash %>

-

<%- 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`) %> +<% 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"; + } + +%> + +
    + +
    +
    +

    Mia "Minteck" Dash %>

    +

    <%- 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`) %> -- cgit