-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (78 loc) · 3.87 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
<!DOCTYPE html>
<!--I'm not really a real web designer. I'd therefore like to acknowledge and thank the real designer from whom I so shamelessly ripped off the HTML and CSS source: Jon Phillips (http://jonphillips.ca). The beautifully designed icons are from Font Awesome (https://fontawesome.com) and are licensed under the Creative Commons Attribution 4.0 International license (https://fontawesome.com/license).-->
<html dir="ltr" lang="en-US">
<head>
<title>Martim Lobao</title>
<meta charset="utf-8">
<meta name="description" content="I'm Martim. I like to play with numbers.">
<meta name="keywords" content="Martim Lobao, Martim, Lobao, data science, PeopleDataLabs, Android Police, Android, data">
<meta name="author" content="Martim Lobao">
<meta name="viewport" content="width=400, initial-scale=1">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/images/favicon/mfavicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/images/favicon/mfavicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="/images/favicon/mfavicon.ico">
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen">
<script type="text/javascript" src="/js/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="/js/jquery.vegas.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".content").css("display", "none");
$(".content").fadeIn(1500);
});
</script>
<!-- Google social markup: https://developers.google.com/webmasters/social-markup/ -->
<script type="application/ld+json">
{ "@context" : "http://schema.org",
"@type" : "Person",
"name" : "Martim Lobao",
"url" : "https://martimlobao.com",
"sameAs" : [ "https://twitter.com/martimlobao",
"https://instagram.com/martimlobao",
"https://c.im/@martim",
"https://www.linkedin.com/in/martimlobao",
"https://github.com/martimlobao",
"https://www.strava.com/athletes/martimlobao",
"https://plus.google.com/u/0/+MartimLobao",
"https://plus.google.com/+MartimLobao"]
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118201624-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118201624-1');
</script>
</head>
<body>
<div class="content">
<!--<div class="logo"><h1><a href="http://martimlobao.com/" title="Martim Lobao">Martim Lobao</a></h1></div>-->
<img src="/images/logo2x.png" width="180" height="180" />
<p><strong>I'm Martim Lobao.</strong> I like to play with numbers.</p>
<ul>
<!--<li class="facebook"><a href="http://facebook.com/martimlobao" title="Facebook" target="_blank"></a></li>-->
<li class="github"><a href="https://github.com/martimlobao" title="Github" target="_blank"></a></li>
<li class="twitter"><a href="https://twitter.com/martimlobao" title="Twitter" target="_blank"></a></li>
<li class="mastodon"><a rel="me" href="https://c.im/@martim" title="Mastodon" target="_blank"></a></li>
<li class="linkedin"><a href="https://www.linkedin.com/in/martimlobao" title="LinkedIn" target="_blank"></a></li>
<li class="instagram"><a href="https://instagram.com/martimlobao" title="Instagram" target="_blank"></a></li>
<!--<li class="googleplus"><a href="http://plus.google.com/+MartimLobao" title="Google+" target="_blank"></a></li>-->
<li class="strava"><a href="https://www.strava.com/athletes/martimlobao" title="Strava" target="_blank"></a></li>
<li class="email"><a href="mailto:[email protected]" title="Email" target="_blank"></a></li>
</ul>
</div>
<script type="text/javascript">
$( function() {
$.vegas('slideshow', {
delay:7500,
backgrounds:[
{ src:'/images/background.jpg' }
]
})('overlay');
});
</script>
</body>
</html>