-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (94 loc) · 3.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Interactive Resume PMD</title>
<!-- <link rel="stylesheet" href="css/normalize.min.css"> -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Trailer Video Modal -->
<div class="modal fade" id="trailer">
<div class="modal-dialog">
<div class="modal-content">
<a href="#" class="hanging-close" data-dismiss="modal" aria-hidden="true">
<img src="https://lh5.ggpht.com/v4-628SilF0HtHuHdu5EzxD7WRqOrrTIDi_MhEG6_qkNtUK5Wg7KPkofp_VJoF7RS2LhxwEFCO1ICHZlc-o_=s0#w=24&h=24"/>
</a>
<div class="scale-media" id="trailer-video-container">
</div>
</div>
</div>
</div>
<!-- Book Modal -->
<div class="modal fade" id="book-modal" tabindex="-1" role="dialog" aria-hidden="true">
</div>
<div class="container-fluid">
<!-- HEADER -->
<div id="header" class="row">
<div class="col-xs-12 col-sm-3">
<picture>
<source srcset="img/biopic-380.webp" type="image/webp">
<img class="biopic img-circle hvr-buzz-out" src="img/biopic-380.jpg" alt="ID Picture, changing to Tolstoi when hovering">
</picture>
</div>
<div class="col-xs-12 col-sm-6 text-center">
<h1>didaKtik</h1>
<h4>[ Pierre Mohr Durdez ]</h4>
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-12 col-sm-4">
<div class="header-link header-link-left"><span>pierre.mohr.durdez</span><i class="fa fa-at"></i><span>gmail.com</span></div>
</div>
<div class="col-xs-12 col-sm-4">
<a class="header-link" href="https://github.com/didaKtik"><i class="fa fa-github"></i><span>GitHub</span></a>
</div>
<div class="col-xs-12 col-sm-4">
<div class="header-link header-link-right"><i class="fa fa-beer"></i><span>Zieblandstraße 35, 80798 München</span></div>
</div>
</div>
<hr>
<div class="row flex">
<!-- GRAPH -->
<div class="col-xs-12 col-sm-6">
<div id="graph">
<svg>
<defs>
<marker id="arrowhead" markerWidth="5" markerHeight="5" orient="auto" refX="0" refY="2.5">
<polygon points="0,0 5,2.5 0,5 2,2.5"/> <!-- triangle pointing right -->
</marker>
</defs>
</svg>
</div>
</div>
<!-- MAP -->
<div id="mapDiv" class="col-xs-12 col-sm-6">
<div id="map"></div>
<h4 class="text-center">Where I've Lived and Worked</h4>
</div>
</div>
<!-- ACADEMIC EDUCATION -->
<div id="schools"></div>
<!-- ONLINE COURSES -->
<div id="onlineCourses"></div>
<!-- WORKS -->
<div id="works"></div>
<!-- PROJECTS -->
<div id="projects"></div>
<!-- HUMAN AND MACHINE LANGUAGES -->
<div id="languages"></div>
<!-- ALL THE REST -->
<div id="allTheRest"></div>
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/resumeBuilder.js"></script>
</body>
</html>