Skip to content

Commit

Permalink
Merge pull request #7 from MelleDijkstra/develop
Browse files Browse the repository at this point in the history
Updated resume
  • Loading branch information
Melle Dijkstra authored Apr 13, 2018
2 parents bb2cfba + e56dc8e commit af89f5c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 35 deletions.
4 changes: 2 additions & 2 deletions frontend/config/assets-compressed.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* This file is generated by the "yii asset" command.
* DO NOT MODIFY THIS FILE DIRECTLY.
* @version 2018-03-31 15:28:23
* @version 2018-04-08 13:34:22
*/
return [
'all' => [
Expand All @@ -13,7 +13,7 @@
'compiled-assets/all-edc88f77d6ffdc7f2da2c4271e0bc7f8.js',
],
'css' => [
'compiled-assets/all-1aec0aa225c6ea1a814e6c5827d1500a.css',
'compiled-assets/all-6cc0e11151444de7e472392cf7a088db.css',
],
'sourcePath' => null,
'depends' => [],
Expand Down
43 changes: 15 additions & 28 deletions frontend/views/site/resume.php
Original file line number Diff line number Diff line change
@@ -1,47 +1,38 @@
<?php
/**
* Created by PhpStorm.
* User: melle
* Date: 11-11-2017
* Time: 23:44
*
* @var $this \yii\web\View
*/

$this->registerCss('css/resume.css');
$this->title = 'Melle Dijkstra';

$skills = [
'Problem Solving' => [
80,
'',
],
'Design Patterns' => [
75,
'Proficient',
'It doesn\'t matter which language you use, it matters how you use it',
],
'Web Development' => [
96,
'Professional',
'Frontend, Backend. You name it, I\'ve mastered the web'
],
'Computer Networks & Communication' => [
60,
'Intermediate',
'I\'ve setup multiple linux servers and like to work with IoT'
],
'Android (Java)' => [
65,
'Made several Android apps for remote controlling arduino, music player, etc.'
'Intermediate',
'Made several Android apps for remote controlling Arduino, music player, etc.'
],
'Javascript' => [
86,
'Javascript was the first language I started with!'
'Professional',
'Javascript was the first programming language I started with!'
],
'Machine Learning & AI' => [
20,
'Basic',
'Inspired by it, and definitely a topic I want to learn more about'
],
'Photoshop / Illustrator' => [
30,
'Basic',
'I use it for personal projects and to improve arty skills!'
],
];
Expand Down Expand Up @@ -69,7 +60,7 @@
'content' => 'Hi! My name is Melle Dijkstra. An enthusiastic computer scientist!',
]);

$CVFile = '/files/CV-Melle-Dijkstra-EN.pdf';
$CVFile = '/files/Melle-Dijkstra-Resume.pdf';

?>
<div id="resume-page">
Expand All @@ -94,8 +85,7 @@
<li><i class="mdi mdi-phone"></i> <a href="tel:+31611666686">(+31)611666686</a></li>
<li><i class="mdi mdi-email"></i> <a href="mailto:[email protected]">[email protected]</a></li>
<li><i class="mdi mdi-download"></i> <a target="_blank"
href="<?= $CVFile ?>">Europass
CV</a>
href="<?= $CVFile ?>">Download Resume</a>
</li>
</ul>
</div>
Expand All @@ -112,12 +102,9 @@
<?php foreach ($skills as $skill => $info): ?>
<li>
<div class="margin-tb-20">
<p class="no-margin"><?= $skill ?></p>
<p class="no-margin"><?= $skill ?> <sub class="text-lightgrey">(<?= $info[0]; ?>)</sub></p>
<small class="no-margin text-lightgrey"><?= $info[1]; ?></small>
</div>
<div class="skill-container">
<div class="skill" style="width: <?= $info[0]; ?>%;"></div>
</div>
</li>
<?php endforeach; ?>
</ul>
Expand Down Expand Up @@ -194,7 +181,7 @@
</tbody>
</table>
<div class="text-center">
Please <a target="_blank" href="<?= $CVFile ?>">download <i class="mdi mdi-download"></i></a> my
Please <a target="_blank" href="<?= $CVFile ?>">download<i class="mdi mdi-download"></i></a> my
resume for more in-depth information about my experiences
</div>
</div>
Expand All @@ -219,9 +206,9 @@
<!-- Unsplash Credits -->
<div class="margin-tb-10 text-center">
<small>
Background by <a
Background by <a target="_blank"
href="https://unsplash.com/photos/fUd_0iyYFVg?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Joshua
Newton</a> on <a
Newton</a> on <a target="_blank"
href="https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
</small>
</div>
Expand Down

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions frontend/web/css/main.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/**
* Melle's Stylesheet
*/

/**
* IMPORTS
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400');
@import url('https://fonts.googleapis.com/css?family=Lato');
@import url('https://fonts.googleapis.com/css?family=Raleway');
/* Material Design Icons */
@import url('//cdn.materialdesignicons.com/1.8.36/css/materialdesignicons.min.css');
Expand Down Expand Up @@ -612,6 +613,10 @@ pre {
font-size: 20px;
}

#guide-view h1 {
font-size: 2.5em;
}

/* Everything in the container is parsed from the markdown */
#guide-container {
word-wrap: break-word;
Expand All @@ -627,10 +632,6 @@ pre {
height: auto;
}

#guide-container h1 {
font-family: "Lato", Helvetica, Arial, sans-serif;
}

#guide-container iframe {
width: 100%;
margin: 10px 0;
Expand Down
Binary file removed frontend/web/files/CV-Melle-Dijkstra-EN.pdf
Binary file not shown.
Binary file added frontend/web/files/Melle-Dijkstra-Resume.pdf
Binary file not shown.

0 comments on commit af89f5c

Please sign in to comment.