-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·30 lines (26 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
executable file
·30 lines (26 loc) · 1.19 KB
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
---
layout: default
---
<section class="home-hero">
<h1>Midas van Oene</h1>
<p class="tagline">Senior Java engineer. Happiest when something’s being built.</p>
<p>I’m Midas van Oene, a senior Java engineer in Nijmegen. I work through Team Rockstars IT, which over the years has landed me at places like Kadaster and ASML; after hours I build things I actually want to use, like PodRadar and nec.quest. If that sounds like your kind of engineer, the rest of the site probably will too.</p>
<p class="home-cta">
<a class="cta cta-primary" href="https://linkedin.com/in/{{ site.linkedin_username }}">Say hi on LinkedIn</a>
<a class="cta cta-secondary" href="{{ '/projects/' | relative_url }}">See what I’m building</a>
</p>
</section>
{% if site.data.recent and site.data.recent.size > 0 %}
{% assign recent = site.data.recent | sort: 'date' | reverse %}
<section class="home-recent">
<h2>Recent</h2>
<ul class="recent-list">
{% for item in recent limit:3 %}
<li>
<a href="{{ item.url }}">{{ item.title }}</a>
<span class="meta">{{ item.date | date: "%b %-d, %Y" }} · {{ item.kind }}</span>
</li>
{% endfor %}
</ul>
</section>
{% endif %}