-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (100 loc) · 5.57 KB
/
index.html
File metadata and controls
105 lines (100 loc) · 5.57 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dorian Somers</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="bg">
<div class="container container-table">
<div class="row vertical-center-row">
<div class="col-md-offset-3 col-md-6 text-center">
<h1>Dorian Somers</h1>
<p class="menu">
<a href="#0" class="toggle" toggle="skills">#NeverStopLearning</a>
<a href="portfolio">#Portfolio</a>
<a href="http://mors.es">#Utopist</a>
<a href="#0" class="toggle" toggle="hobbies">#Hiking</a>
</p>
<!--- hobbies --->
<div class="content" id="hobbies">
<iframe id="box" src="https://player.vimeo.com/video/107378522?title=0&byline=0&portrait=0" width="100%" height="100%" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<!--- skills --->
<div class="content" id="skills">
<ul class="text-left list-unstyled">
<li><i class="square-o"></i> Portuguese, Dutch</li>
<li><i class="square-o"></i> Blockchain</li>
<li><i class="square-o"></i> Lazer cut, 3D print & CNC</li>
<li><i class="square-o"></i> Guitar/Harmonica & Forró dance</li>
<li><i class="square"></i> English, Spanish</li>
<li><i class="square"></i> Testing <span class="light">(Rspec, Jasmine, Karma, Protractor)</span></li>
<li><i class="square"></i> Product development <span class="light">(Lean Startup, BDD, TDD)</span></li>
<li><i class="square"></i> Project management <span class="light">(Agile, Scrum)</span></li>
<li><i class="square"></i> Ruby <span class="light">(RubyOnRails)</span></li>
<li><i class="square"></i> Javascript <span class="light">(AngularJS, Angular4, NodeJS, Typescript, RxJS)</span></li>
<li><i class="square"></i> CSS</li>
<li><i class="square"></i> HTML</li>
</ul>
</div>
<a class="padding" href="https://github.com/dsmrs" data-toggle="tooltip"><i class="fa fa-github" aria-hidden="true"></i></a>
<a class="padding" href="https://www.linkedin.com/in/doriansomers/" data-toggle="tooltip"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a class="padding" href="mailto:doriansomers@gmail.com" data-toggle="tooltip"><i class="fa fa-envelope-o" aria-hidden="true"></i></a>
<a href="#" class="padding" data-toggle="modal" data-target=".drawings"><i class="fa fa-pencil"></i></a>
</div>
</div>
</div>
<div class="modal fade drawings" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">My sketchbook (mostly in public transport)</h4>
</div>
<div class="modal-body">
<div class="row">
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="script.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script src="https://www.googletagmanager.com/gtag/js?id=UA-116133123-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116133123-1');
</script>
<script type="text/javascript">
var utmRemoverRun = false;
function utmRemover() {
if (!utmRemoverRun) { // only run once
utmRemoverRun = true;
var cleanSearch = window.location.search
.replace(/utm_[^&]+&?/g, '') // removes utm_xxx parameters
.replace(/&$/, '') // removes & if last character
.replace(/^\?$/, '') // removes ? if only remaining character
;
// some pass utm_xxxx in the hash
var cleanHash = window.location.hash
.replace(/utm_[^&]+&?/g, '') // removes utm_xxx parameters
.replace(/&$/, '') // removes & if last character
.replace(/^\#$/, '') // removes # if only remaining character
;
window.history.replaceState({}, '', window.location.pathname + cleanSearch + cleanHash);
}
};
setTimeout(utmRemover, 2000); // remove after 2 second
// These need to run after the pageview command
if (typeof ga !== 'undefined') ga(utmRemover); // remove after normal Analytics has run
</script>
</body>
</html>