This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (88 loc) · 3.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="" class="no-js">
<head>
<title>Rick Meijer - Freelance webdeveloper and problemsolver</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="I'm a pragmatic, creative developer with a focus on the front-end and user experience design. Experienced in agency work and product development.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/main.css">
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://rickmeijer.matomo.cloud/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src='//cdn.matomo.cloud/rickmeijer.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<main>
<h1 class="header">Hi</h1>
<p class="intro">I'm a pragmatic, creative developer with a focus on the front-end and user experience design. Experienced in agency work and product development.</p>
<section class="contact">
<p>You can reach me through here:</p>
<nav>
<a title="Email." href="mailto:[email protected]">Email.</a>
<a title="Linkedin." href="https://www.linkedin.com/in/rick-meijer/">Linkedin.</a>
<a title="Bitbucket." href="https://bitbucket.org/rickmeijer/">Bitbucket.</a>
<a title="Github." href="https://www.github.com/rickmeijer/">Github.</a>
<button class="btn" onclick="toggleVcard()">vCard.</button>
</nav>
</section>
<section class="portfolio">
<p>I helped to make:</p>
<nav>
<a href="https://play.google.com/store/apps/details?id=nl.aegon.carkroodle">CarKroodle (app)</a>
<a href="https://play.google.com/store/apps/details?id=nl.aegon.fitkroodle">FitKroodle (app)</a>
<a href="https://www.hogeveluwe.nl" target="_blank">Hoge Veluwe</a>
<a href="https://www.icrc.org/" target="_blank">ICRC.org</a>
<a href="https://www.kwik-fit.nl" target="_blank">Kwik Fit</a>
<a href="https://www.tudelft.nl" target="_blank">TU Delft</a>
</nav>
</section>
<section class="skills">
<p>I've worked with:</p>
<ul>
<li>VueJS</li>
<li>Angular</li>
<li>NodeJS</li>
<li>jQuery</li>
<li>VanillaJS</li>
<li>Sass</li>
<li>Less</li>
<li>Ionic/Cordova</li>
<li>Ruby on Rails</li>
<li>PHP</li>
<li>Python</li>
<li>GoLang</li>
</ul>
</section>
</main>
<div class="vcardContainer">
<button class="btn" onclick="toggleVcard()">×</button>
<img src="img/vcard.svg" alt="scannable contact information" />
<a href="vCard.vcf">download vcard</a>
</div>
<script type="text/javascript">
function toggleVcard() {
document.querySelectorAll('.vcardContainer').forEach(function(elem) {
if(!elem.classList.contains('was-open')) elem.classList.add('was-open');
if(!elem.classList.contains('is-open')) {
elem.classList.add('is-open');
} else {
elem.classList.remove('is-open');
}
});
}
</script>
</body>
</html>