forked from udacity/frontend-nanodegree-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·241 lines (213 loc) · 11.3 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Resume</title>
<!-- Load the page styles. -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="dist/css/materialize.min.css"/>
<link rel="stylesheet" href="dist/css/owl.carousel.css"/>
<link rel="stylesheet" href="dist/css/style.min.css"/>
</head>
<body>
<section>
<header>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper container">
<a data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="#work" data-scroll>Work</a></li>
<li><a href="#projects" data-scroll>Projects</a></li>
<li><a href="#education" data-scroll>Education</a></li>
<li><a href="#map" data-scroll>Places</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="#work" data-scroll>Work</a></li>
<li><a href="#projects" data-scroll>Projects</a></li>
<li><a href="#education" data-scroll>Education</a></li>
<li><a href="#map-information" data-scroll>Places</a></li>
</ul>
</div>
</nav>
</div>
</header>
<main>
<div class="hg">
<div class="parallax-container">
<div class="parallax">
<img src="images/Filx.png" alt="Main Background" class="main-bg"/>
</div>
</div>
</div>
<div class="main-card card">
<!-- Bio Information -->
<div class="bio-information" id="bio">
<div class="row">
<div class="col s12 m4 l3">
<div id="bio-pic">
<!-- Here goes the profile picture -->
</div>
</div>
<div class="col s12 m8 l6">
<div id="personal-details">
<!-- Here goes the profile contact info -->
</div>
</div>
<div class="col s12 l3">
<h5 id="skills-title">Skills:</h5>
<ul id="bio-skills-container">
<!-- Here goes all skills -->
</ul>
</div>
</div>
</div> <!-- /.bio-information -->
<!-- Work Experience Information -->
<div class="work-information section" id="work">
<div class="row">
<div class="col s12 m6">
<div class="section__title">
<h4>Work Experience</h4>
</div>
</div>
</div>
<div class="row row-relative">
<div class="col s12 l9">
<div class="owl-carousel row" id="carousel-work">
<!-- Here goes all Work cards -->
</div> <!-- /.owl-carousel -->
</div> <!-- /.col -->
<div class="col s12 l3 full-height">
<div class="carousel-btns">
<a class="btn-floating btn-large waves-effect waves-light"><i class="material-icons" id="btn-work-left">keyboard_arrow_left</i></a>
<a class="btn-floating btn-large waves-effect waves-light"><i class="material-icons" id="btn-work-right">keyboard_arrow_right</i></a>
</div>
</div>
</div> <!-- /.row -->
</div> <!-- /.work-information -->
<!-- Project Section -->
<div class="section projects-information" id="projects">
<div class="row">
<div class="col s12 m6">
<div class="section__title">
<h4 class="white-text">Projects</h4>
<p class="white-text">Projects i've done as a developer. Here you can find Web applications, designs and also different plugins and libraries.</p>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div id="portfolio-controls">
<a class="chip active">All</a>
<a class="chip" data-project="web-applications">Web Applications</a>
<a class="chip" data-project="plugins">Plugins</a>
<a class="chip" data-project="designs">Designs</a>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<!-- Portolio cards section -->
<div id="portfolio-container" class="row">
<!-- Portfolio Cards Goes Here -->
</div>
</div>
</div> <!-- /.row -->
</div> <!-- /.project-information -->
<!-- Education Section -->
<div class="section education-information" id="education">
<div class="row">
<div class="col s12 m6">
<div class="section__title">
<h4 class="white-text">Education</h4>
<p class="white-text">Information about my education. Here you can find <strong>Schools</strong> and <strong>University</strong> where i come and <strong>Online Courses</strong> i have done.</p>
</div>
</div>
</div>
<div class="row row-relative">
<div class="col s12 l9">
<div class="owl-carousel row" id="carousel-education">
<!-- Education Schools Goes here -->
</div> <!-- /.owl-carousel -->
</div> <!-- /.col -->
<div class="col s12 l3 full-height">
<div class="carousel-btns">
<a class="btn-floating btn-large waves-effect waves-light"><i class="material-icons" id="btn-education-left">keyboard_arrow_left</i></a>
<a class="btn-floating btn-large waves-effect waves-light"><i class="material-icons" id="btn-education-right">keyboard_arrow_right</i></a>
</div>
</div>
</div> <!-- /.row -->
<div class="row row-relative">
<div class="col s12 l9">
<div class="section__title">
<h4 class="white-text">Online Courses</h4>
</div>
<div class="owl-carousel row" id="carousel-education-online">
<!-- Education Online Cards Goes here -->
</div> <!-- /.owl-carousel -->
</div> <!-- /.col -->
<div class="col s12 l3 full-height">
<div class="carousel-btns">
<a class="btn-floating btn-large waves-effect waves-light"><i class="material-icons" id="btn-education-online-left">keyboard_arrow_left</i></a>
<a class="btn-floating btn-large waves-effect waves-light"><i class="material-icons" id="btn-education-online-right">keyboard_arrow_right</i></a>
</div>
</div>
</div> <!-- /.row -->
</div> <!-- /.education-information -->
<!-- Google Maps Section -->
<div class="section map-information" id="map-information">
<div class="row">
<div class="col s12">
<div class="section__title">
<h4>Where i've Lived and Worked</h4>
<p>Some places where i was study and work, actually all places are form Venezuela.</p>
</div>
</div>
</div>
<div class="row">
<div class="col s12">
<div id="mapDiv">
<!-- Maps goes here -->
</div>
</div>
</div>
</div>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Juan Henriquez Resume</h5>
<p class="grey-text text-lighten-4">Thanks for see my resume :)</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Social Links!</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="https://github.com/JuanHenriquez/">Github</a></li>
<li><a class="grey-text text-lighten-3" href="https://twitter.com/__juanhenriquez">Twitter</a></li>
<li><a class="grey-text text-lighten-3" href="http://google.com/+JuanHenriquez">Google+</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2016 Copyright
</div>
</div>
</footer>
</div> <!-- /.main-card -->
</main>
</section>
<script src="dist/js/jquery.min.js"></script>
<script src="http://maps.googleapis.com/maps/api/js?libraries=places"></script>
<script src="dist/js/owl.carousel.min.js"></script>
<script src="dist/js/modernizr.min.js"></script>
<script src="dist/js/jquery.shuffle.min.js"></script>
<script src="dist/js/helper.js"></script>
<script src="dist/js/smooth-scroll.min.js"></script>
<script src="dist/js/materialize.min.js"></script>
<script src="dist/js/resumeBuilder.min.js"></script>
<script src="dist/js/maps.js"></script>
</body>
</html>