diff --git a/index.html b/index.html index 55660c8..ce63913 100644 --- a/index.html +++ b/index.html @@ -89,7 +89,7 @@

Projects

- Here is a list of some of my main projects. Check them out if you want!
For a full list of my programming projects, you can check out my GitHub page linked below.
Also, if you want to have a Minecraft mod made, you can commission me. + Here is a list of some of my projects. Check them out if you want!
For a full list of my programming projects, you can check out my GitHub page linked below.

diff --git a/res/projects/itch.png b/res/projects/itch.png new file mode 100644 index 0000000..57147aa Binary files /dev/null and b/res/projects/itch.png differ diff --git a/res/projects/itch_dark.png b/res/projects/itch_dark.png new file mode 100644 index 0000000..d22a843 Binary files /dev/null and b/res/projects/itch_dark.png differ diff --git a/scripts/projects.js b/scripts/projects.js index 4c6b3fc..87ed6cd 100644 --- a/scripts/projects.js +++ b/scripts/projects.js @@ -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 += '

' + project['name'] + '

'; p += '

' + project['desc'] + '

'; - p += '' + project['status'] + ''; + if (project['status']) + p += '' + project['status'] + ''; let links = project['links']; if (links) {