2021-07-09 01:59:28 +02:00
< span class = "anchor" id = "social" > < / span >
< div class = "list-display rounded" >
2021-11-10 23:18:12 +01:00
< h1 > 🔗 Social< / h1 >
2021-07-09 01:59:28 +02:00
< p >
These are other websites where you can find me and the things I do, including the pages where I publish my code and games and where I sometimes stream and upload videos. This list also includes a lot of ways to reach me.
< / p >
< div class = "row" >
< div class = "col" >
< div id = "social-list" >
{% for item in site.data.socials %}
< a class = "btn btn-light social-button rounded-0" href = "{{ item.link }}" >
2021-07-09 02:28:09 +02:00
< img class = "social-image social-image-light" src = "res/social/{{ item.name | downcase }}.png" alt = "Social icon" >
2021-07-09 01:59:28 +02:00
{% if item.darkIcon %}
2021-07-09 02:28:09 +02:00
{% assign dark = item.name | downcase | append: "_dark" %}
2021-07-09 01:59:28 +02:00
{% else %}
2021-07-09 02:28:09 +02:00
{% assign dark = item.name | downcase %}
2021-07-09 01:59:28 +02:00
{% endif %}
< img class = "social-image social-image-dark" src = "res/social/{{ dark }}.png" alt = "Social icon" hidden >
{{ item.name }}
< / a >
{% endfor %}
< / div >
2021-09-18 03:16:59 +02:00
Additionally, here are some miscellaneous socials:
2021-07-09 01:59:28 +02:00
< ul >
2021-09-18 03:16:59 +02:00
< li > I post most of my Sims 4 builds on < a href = "https://ellpeck.de/sims4gallery" > the gallery< / a > as < strong > Ellpeck< / strong > . I also post screenshots on my < a href = "https://www.instagram.com/ellssimsbuilds/" > Simstagram< / a > .< / li >
2021-09-10 18:53:18 +02:00
< li > My Nintendo Switch friend code is < strong > SW-5281-8834-6801< / strong > .< / li >
2021-09-18 03:16:59 +02:00
< li > My AC: New Horizons Dream Address is < strong > DA-4030-6437-5104< / strong > .< / li >
2021-07-09 01:59:28 +02:00
< / ul >
< / div >
< div class = "col-md-auto" id = "discord-div" >
< iframe id = "discord-widget" title = "Ellpeck's Discord server" width = "300" height = "450" allowtransparency = "true" frameborder = "0" > < / iframe >
< / div >
< script >
if (dark) {
$(".social-image-light").attr("hidden", true);
$(".social-image-dark").attr("hidden", false);
2021-07-22 07:54:31 +02:00
$("#social-list").find(".btn-light").each(function () {
let e = $(this);
e.removeClass("btn-light");
e.addClass("btn-dark");
});
2021-07-09 01:59:28 +02:00
}
let theme = dark ? "dark" : "light";
$("#discord-widget").attr("src", `https://discordapp.com/widget?id=181435613147430913&theme=${theme}`);
< / script >
< / div >
< / div >