more stuffff

This commit is contained in:
Ellpeck 2018-07-25 12:50:47 +02:00
parent c7efe2aaf8
commit d9408675cd
9 changed files with 27 additions and 13 deletions

View file

@ -44,10 +44,17 @@
<!-- Home --> <!-- Home -->
<div class="jumbotron"> <div class="jumbotron">
<div class="container"> <div class="container">
<h1 class="display-4" id="intro-text"></h1> <div class="row">
<script src="scripts/greet.js"></script> <div class="col-md-auto">
<p class="lead">Welcome to my little website! I'm Ellpeck, a student and hobbyist coder and writer from Germany.</p> <img src="res/me.png" class="rounded-circle" width="200" height="200">
<p>Look around this website to find out more about my projects and other places you can find me!</p> </div>
<div class="col">
<h1 class="display-4" id="intro-text"></h1>
<script src="scripts/greet.js"></script>
<p class="lead">Welcome to my little website! I'm Ellpeck, a student and hobbyist coder and writer from Germany.</p>
<p>Look around this website to find out more about my projects and other places you can find me!</p>
</div>
</div>
</div> </div>
</div> </div>

BIN
res/me.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
res/projects/aa.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
res/projects/crossword.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
res/projects/poem.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

BIN
res/projects/rb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View file

@ -1,5 +1,5 @@
$(function() { $(function() {
$('.navbar-collapse a').click(function() { $('.navbar-collapse a').on('click', function() {
$(".navbar-collapse").collapse('hide'); $('.navbar-collapse').collapse('hide');
}); });
}); });

View file

@ -5,7 +5,8 @@ const projects = [{
'Website': 'https://rockbottom.ellpeck.de', 'Website': 'https://rockbottom.ellpeck.de',
'API on GitHub': 'https://github.com/RockBottomGame/API' 'API on GitHub': 'https://github.com/RockBottomGame/API'
}, },
'status': 'In Development' 'status': 'In Development',
'icon': 'rb'
}, },
{ {
'name': 'Actually Additions', 'name': 'Actually Additions',
@ -14,7 +15,8 @@ const projects = [{
'CurseForge page': 'https://www.ellpeck.de/actadd', 'CurseForge page': 'https://www.ellpeck.de/actadd',
'Online manual': 'https://www.ellpeck.de/actaddmanual/' 'Online manual': 'https://www.ellpeck.de/actaddmanual/'
}, },
'status': 'Handed off' 'status': 'Handed off',
'icon': 'aa'
}, },
{ {
'name': 'Sudoku', 'name': 'Sudoku',
@ -23,7 +25,8 @@ const projects = [{
'Play it here': 'https://ellpeck.de/sudoku', 'Play it here': 'https://ellpeck.de/sudoku',
'Check the source': 'https://github.com/Ellpeck/Sudoku' 'Check the source': 'https://github.com/Ellpeck/Sudoku'
}, },
'status': 'Finished' 'status': 'Finished',
'icon': 'sudoku'
}, },
{ {
'name': 'Memory', 'name': 'Memory',
@ -32,7 +35,8 @@ const projects = [{
'Play it here': 'https://ellpeck.de/memory', 'Play it here': 'https://ellpeck.de/memory',
'Check the source': 'https://github.com/Ellpeck/Memory' 'Check the source': 'https://github.com/Ellpeck/Memory'
}, },
'status': 'Finished' 'status': 'Finished',
'icon': 'memory'
}, },
{ {
'name': 'Crossword Puzzle Generator', 'name': 'Crossword Puzzle Generator',
@ -40,7 +44,8 @@ const projects = [{
'links': { 'links': {
'Play it here': 'https://www.ellpeck.de/crossword/' 'Play it here': 'https://www.ellpeck.de/crossword/'
}, },
'status': 'On hold' 'status': 'On hold',
'icon': 'crossword'
}, },
{ {
'name': 'Poem Generator', 'name': 'Poem Generator',
@ -48,7 +53,8 @@ const projects = [{
'links': { 'links': {
'Check it out here': 'https://www.ellpeck.de/poemgen/' 'Check it out here': 'https://www.ellpeck.de/poemgen/'
}, },
'status': 'Cancelled' 'status': 'Cancelled',
'icon': 'poem'
} }
]; ];
@ -56,7 +62,7 @@ let p = '';
for (project of projects) { for (project of projects) {
p += '<div class="card bg-light project">'; p += '<div class="card bg-light project">';
p += '<div class="card-body">'; p += '<div class="card-body">';
p += '<img class="project-image" src="res/projects/' + project['name'].toLowerCase() + '.png" alt="">'; p += '<img class="project-image" src="res/projects/' + project['icon'] + '.png" alt="">';
p += '<h4 class="card-title">' + project['name'] + '</h4>'; p += '<h4 class="card-title">' + project['name'] + '</h4>';
p += '<p class="card-text">' + project['desc'] + '</p>'; p += '<p class="card-text">' + project['desc'] + '</p>';

View file

@ -6,6 +6,7 @@ body {
.main { .main {
margin-top: 20px; margin-top: 20px;
padding-bottom: 200px;
} }
.project { .project {