-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (106 loc) · 2.9 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
<html>
<head>
<title>Malte Heinzelmann</title>
<meta name="author" content="Malte Heinzelmann">
<meta name="date" content="2016-07-20T04:00:00+02:00">
<meta name="description" content="Malte Heinzelmann">
<meta name="keywords" content="Malte Heinzelmann">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<style>
html, body {
width: 100%;
height: 100%;
background-color: #333333;
color: #AAAAAA;
margin: 0px;
padding: 0px;
font-family: sans-serif;
display:table;
}
h1 {
margin: 10px 0px;
padding: 0px;
}
h2 {
margin: 0px;
padding: 0px;
}
.content {
display:table-cell;
vertical-align:middle;
text-align: center;
margin: 30px;
}
.content > div {
display: inline-block;
text-align: center;
}
.row > span {
display:table-cell;
vertical-align:top;
text-align: left;
}
.text {
padding-left: 10px;
}
.text ul {
list-style-type: none;
padding-left: 0px;
}
.profileimage {
width: 200px;
border: -4px solid white;
border-radius: 4px;
}
.accent {
color: #1CA8DD;
}
a, a:link, a:visited {
text-decoration: none;
color: #1CA8DD;
}
a:active, a:hover {
color: #ffffff;
}
noscript em {
color: red;
}
</style>
<script type="text/javascript">
function generate_mail(user, domain) {
document.write("<a href=\"mailto");
document.write(":" + user + "@");
document.write(domain + "\"><i class=\"fa fa-envelope\"></i> " + user + "@" + domain + "<\/a>");
}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-63610438-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="content">
<div class="row">
<span>
<img class="profileimage" src="assets/img/hnzlmnn.jpg" />
</span>
<span class="text">
<h1 class="accent">Malte Heinzelmann</h1>
<ul>
<li><a href="https://github.com/hnzlmnn"><i class="fa fa-github"></i> hnzlmnn</a></li>
<li><a href="https://twitter.com/hnzlmnn"><i class="fa fa-twitter"></i> hnzlmnn</a></li>
<li>
<script type="text/javascript">generate_mail('malte','hnzlmnn.de');</script>
<noscript><em>Email address protected by JavaScript. Activate JavaScript to see the email.</em></noscript>
</li>
<li><a href="https://keybase.io/hnzlmnn"><i class="fa fa-key"></i> keybase.io/hnzlmnn</a></li>
</ul>
</span>
</div>
</div>
</body>
</html>