-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (129 loc) · 3.81 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
---
layout: default
schema_include: schema/about-me.html
title: Home - Dennis Claassen.nl
---
<section class="slide grid me">
<div class="pic">
🙋♂️
</div>
<div class="intro">
<h2>
Hi! I'm Dennis.
</h2>
<p class="lead">
I'm currently a lead developer at Yoast. I'm leading 2 multidisciplinary squads
that focus on Yoast SEO for Shopify, and <a href="https://www.yoast.com" target="_blank" rel="noopener">the Yoast.com website</a> and MyYoast customer portal.
</p>
<p>
If you want to get in contact or stay up to date with what interests me at the moment, the best places to find me are:
</p>
{% assign socials = site.data.resume-profile.online_presence | where_exp: "item", "item.icon_class != nil" %}
<ul class="no-bullet">
{%- for social in socials %}
<li>
<i class="{{ social.icon_class }}"></i>
<a href="{{ social.url }}" rel="me noopener" target="_blank">
{{ social.display_name }}
</a>
</li>
{%- endfor %}
</ul>
</div>
<!--
<div class="quotes">
<h4>What colleagues say about me</h4>
{% for quote in site.data.resume-quotes %}
<blockquote>
{{ quote.quote }}
{% if quote.author %}
<cite>{{ quote.author }}</cite>
{% endif %}
</blockquote>
{% endfor %}
</div>
-->
</section>
<section class="slide slide--inverse grid section">
<header class="header">
<h3>Skills</h3>
</header>
<section class="content">
<article>
{% for skill in site.data.resume-skills %}
<p>
<strong>{{ skill.name }}</strong>.
{{ skill.description }}
</p>
{% endfor %}
</article>
</section>
</section>
<section id="exp" class="slide grid section">
<header class="header">
<h3>Experience</h3>
</header>
<section class="content">
{% for experience in site.data.resume-experience %}
<article class="slide__item">
<div>
<h4>
{{ site.data.resume-organizations[experience.company_ref].name }}
</h4>
<p>
{{ experience.description | newline_to_br }}
</p>
</div>
<dl>
{% for role in experience.roles %}
<div>
<div>
<dt> {{ role.title }} </dt>
</div>
<dd>
{% if role.end == nil %}
{{ role.start | date: "%B %Y" }} - Present
{% else %}
<time datetime="{{ role.start | date: "%Y-%m-%d" }}">
{{ role.start | date: "%B %Y" }}
</time>
-
<time datetime="{{ role.end | date: "%Y-%m-%d" }}">
{{ role.end | date: "%B %Y" }}
</time>
{% endif %}
</dd>
</div>
{% endfor %}
</dl>
</article>
{% endfor %}
</section>
</section>
<section id="edu" class="slide slide--inverse grid section">
<header class="header">
<h3>Education</h3>
</header>
<section class="content">
{% for education in site.data.resume-education %}
<article class="slide__item">
<div>
<h4> {{ site.data.resume-organizations[education.school_ref].name }} </h4>
</div>
<dl>
{% for study in education.studies %}
<dt> {{ study.study }} </dt>
<dd>
<time datetime="{{ study.start | date: "%Y-%m-%d" }}">
{{ study.start | date: "%B %Y" }}
</time> -
<time datetime="{{ study.end | date: "%Y-%m-%d" }}">
{{ study.end | date: "%B %Y" }}
</time>
</dd>
{% endfor %}
</dl>
</article>
{% endfor %}
</section>
</section>