-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (77 loc) · 3.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Marc Vornetran</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.1/css/bulma.min.css" integrity="sha512-ZRv40llEogRmoWgZwnsqke3HNzJ0kiI0+pcMgiz2bxO6Ew1DVBtWjVn0qjrXdT3+u+pSN36gLgmJiiQ3cQtyzA==" crossorigin="anonymous" />
<style>
.has-white-space-nowrap {
white-space: nowrap;
}
</style>
</head>
<body class="is-flex is-justify-content-center p-5">
<div class="is-inline-block">
<h1 class="title mb-5">
Marc Vornetran
</h1>
<div class="mb-5">
<span class="has-white-space-nowrap">
<strong>
Software Engineer
</strong>
at
<strong>
<a href="https://sap.com">SAP</a>
</strong>
</span>
<span class="has-white-space-nowrap">
working on
<strong>
<a href="https://gardener.cloud">Gardener 🌱</a>
</strong>
</span>
</div>
<div>
📍
<a rel="noopener" href="https://maps.app.goo.gl/ohxAjaZ9yPqkNdCf7">
Karlsruhe, Germany
</a>
</div>
<div class="mb-5">
⏳
<code id="age"></code>
</div>
<div>
<a rel="noopener" class="button is-light is-danger" href="mailto:[email protected]">
Email
</a>
<a rel="noopener" class="button is-light is-danger" href="https://github.com/marc1404">
GitHub
</a>
<a rel="noopener" class="button is-light is-danger" href="https://stackoverflow.com/users/2460088/marc">
Stack Overflow
</a>
</div>
</div>
<script>
(function () {
'use strict';
var birthday = new Date(1994, 3, 14);
var today = new Date();
var age = today.getFullYear() - birthday.getFullYear();
var monthDifference = today.getMonth() - birthday.getMonth();
var dayDifference = today.getDate() - birthday.getDate();
if (monthDifference < 0 || (monthDifference === 0 && dayDifference < 0)) {
age--;
}
document.getElementById('age').innerText = (age >>> 0).toString(2);
})();
</script>
</body>
</html>