52 lines
No EOL
1.3 KiB
JavaScript
52 lines
No EOL
1.3 KiB
JavaScript
const socials = [{
|
|
'name': 'Discord',
|
|
'link': 'https://www.ellpeck.de/discord',
|
|
},
|
|
{
|
|
'name': 'Twitter',
|
|
'link': 'https://twitter.com/Ellpeck'
|
|
},
|
|
{
|
|
'name': 'GitHub',
|
|
'link': 'https://github.com/Ellpeck/',
|
|
'darkIcon': true
|
|
},
|
|
{
|
|
'name': 'Twitch',
|
|
'link': 'http://twitch.tv/ellpeck'
|
|
},
|
|
{
|
|
'name': 'YouTube',
|
|
'link': 'https://www.youtube.com/c/ellpeck'
|
|
},
|
|
{
|
|
'name': "itch.io",
|
|
"link": "https://ellpeck.itch.io/",
|
|
"darkIcon": true
|
|
},
|
|
{
|
|
'name': 'Instagram',
|
|
'link': 'https://instagram.com/Ellopecko'
|
|
},
|
|
{
|
|
'name': 'Patreon',
|
|
'link': 'https://patreon.com/ellpeck'
|
|
},
|
|
{
|
|
'name': 'Email',
|
|
'link': 'mailto:me@ellpeck.de',
|
|
'darkIcon': true
|
|
}
|
|
];
|
|
|
|
let s = '';
|
|
for (social of socials) {
|
|
s += '<a class="btn ' + (dark ? "btn-dark" : "btn-light") + ' social-button rounded-0" href="' + social['link'] + '"">';
|
|
let icon = social['name'].toLowerCase();
|
|
if (dark && social['darkIcon'])
|
|
icon += '_dark';
|
|
s += '<img class="social-image" src="res/social/' + icon + '.png" alt="">';
|
|
s += social['name'];
|
|
s += '</a>'
|
|
}
|
|
$('#social-list').html(s); |