add itch link

This commit is contained in:
Ellpeck 2019-05-24 18:47:56 +02:00
parent f1c42c6f7b
commit 4412d46e8f
4 changed files with 11 additions and 2 deletions

View File

@ -89,7 +89,7 @@
<div class="list-display rounded">
<h1>Projects</h1>
<p>
Here is a list of some of my main projects. Check them out if you want!<br>For a full list of my programming projects, you can check out my GitHub page linked <a href="#social">below</a>.<br>Also, if you want to have a Minecraft mod made, you can <a href="#commissions">commission me</a>.
Here is a list of some of my projects. Check them out if you want!<br>For a full list of my programming projects, you can check out my GitHub page linked <a href="#social">below</a>.
</p>
<div id="project-list">
<noscript><em>The content that should be here is dynamically generated. Please enable JavaScript if you see this.</em></noscript>

BIN
res/projects/itch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
res/projects/itch_dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -46,6 +46,14 @@ const projects = [{
'status': 'On hold',
'icon': 'rb'
},
{
'name': 'Small Games',
'desc': 'Sometimes, I take part in a game jam or set myself the goal to work on a game over a small period of time to flex my creative muscles. Usually, I publish what I created on itch.io for everyone to check out.',
'links': {
'My profile': 'https://ellpeck.itch.io/'
},
'icon': dark ? 'itch_dark' : 'itch'
}
];
let p = '';
@ -56,7 +64,8 @@ for (project of projects) {
p += '<h4 class="card-title">' + project['name'] + '</h4>';
p += '<p class="card-text">' + project['desc'] + '</p>';
p += '<span class="text-muted project-status">' + project['status'] + '</span>';
if (project['status'])
p += '<span class="text-muted project-status">' + project['status'] + '</span>';
let links = project['links'];
if (links) {