-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
379 lines (364 loc) · 21.2 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
---
permalink: /index.html
layout: default
title: Robert Stivanson - Resume
---
{% assign profile = site.data.profile %}
{% assign icons = site.data.fa_icons %}
<div class="row">
<div class="primary col-md-8 col-sm-12 col-xs-12">
{% if profile.config.resume.showAboutMe and profile.aboutMe.size > 0 %}
<section class="about section">
<div class="section-inner">
<h2 class="heading">{{ profile.name }}</h2>
<div class="content">
{% for item in profile.aboutMe %}
<p>{{ item }}</p>
{% endfor %}
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->
{% endif %}
{% assign allProjects = site.data.projects | where:"active",true | sort:"dates.start" %}
{% assign featuredProject = allProjects | where:"isFeatured",true | first %}
{% assign priorityProjects = allProjects | where:"isPriority",true %}
{% assign otherProjects = allProjects | where:"isFeatured",false | where:"isPriority",false %}
<section class="latest section">
<div class="section-inner">
<h2 class="heading">Latest Projects</h2>
<div class="content">
{% if featuredProject %}
<div class="item featured text-center">
<h3 class="title">
<a href="{{ featuredProject.defaultLink }}">{{ featuredProject.name }}</a>
</h3>
<p class="summary">{{ featuredProject.oneLiner }}</p>
<div class="featured-image">
<a href="{{ featuredProject.defaultLink }}" title="{{ featuredProject.name }}">
{% if item.imageLink != "" %}
<img class="img-responsive project-image" src="{{ featuredProject.imageLink }}" alt="{{ featuredProject.name }}" />
{% endif %}
</a>
{% if featuredProject.ribbon %}
<!--
"text": "New"
-->
<div class="ribbon hidden">
<div class="text">{{ featuredProject.ribbon.text}}</div>
</div>
{% endif %}
</div>
<div class="desc text-left">
{% for descLine in featuredProject.description %}
<p>{{ descLine }}</p>
{% endfor %}
</div><!--//desc-->
{% if featuredProject.viewMore and featuredProject.viewMore.size > 0 %}
<div class="view-more">
{% for more in featuredProject.viewMore %}
<p>
<a class="more-link" href="{{ more.link }}">
{% assign icon = icons | where:"id",more.faIcon | first %}
<i class="{{ icon.icon_class }}"></i> {{ more.text }}
</a>
</p>
{% endfor %}
</div>
{% endif %}
{% if featuredProject.projectBacking %}
<!--
"text": "Back My Project"
"faIcon": "thumbs-up"
"link": "#"
-->
<a class="btn btn-cta-secondary" href="{{ featuredProject.projectBacking.link }}">
{% assign icon = icons | where:"id",featuredProject.projectBacking.faIcon | first %}
<i class="{{ icon.icon_class }}"></i> {{ featuredProject.projectBacking.text }}
</a>
{% endif %}
</div><!--//item-->
{% endif %}
{% if priorityProjects and priorityProjects.size > 0 %}
{% if featuredProject %}
<hr class="divider" />
{% endif %}
{% for item in priorityProjects limit:profile.config.resume.maxPriorityProjects %}
<div class="project item row">
<a class="col-md-4 col-sm-4 col-xs-12" href="{{ item.defaultLink }}">
{% if item.imageLink and item.imageLink != "" %}
<img class="img-responsive project-image" src="{{ item.imageLink }}" alt="{{ item.name }}" />
{% endif %}
</a>
<div class="desc col-md-8 col-sm-8 col-xs-12">
<h3 class="title">
<a href="{{ item.defaultLink }}">{{ item.name }}</a>
</h3>
{% for descLine in item.description %}
<p class="summary">{{ descLine }}</p>
{% endfor %}
{% if item.viewMore and item.viewMore.size > 0 %}
<div class="view-more text-right">
{% for more in item.viewMore %}
<p>
<a class="more-link" href="{{ more.link }}">
{% assign icon = icons | where:"id",more.faIcon | first %}
<i class="{{ icon.icon_class }}"></i> {{ more.text }}
</a>
</p>
{% endfor %}
</div>
{% endif %}
</div><!--//desc-->
</div><!--//item-->
{% if forloop.last == false %}
<hr class="divider" />
{% endif %}
{% endfor %}
{% else if featuredProject == nil %}
<p>No featured projects.</p>
{% endif %}
{% if allProjects.size > profile.config.resume.maxPriorityProjects %}
<div class="text-center">
<a class="btn btn-cta-secondary" href="/projects.html">
<i class="fa fa-bars"></i> View All Projects
</a>
</div>
{% endif %}
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->
{% if profile.config.resume.showOtherProjects %}
<section class="projects section">
<div class="section-inner">
<h2 class="heading">Other Projects</h2>
<div class="content">
{% if otherProjects and otherProjects.size > 0 %}
{% for item in otherProjects limit:profile.config.resume.maxOtherProjects %}
<div class="item">
<h3 class="title">
<a href="{{ item.defaultLink }}">{{ item.name }}</a>
</h3>
{% for descLine in item.description %}
<p class="summary">{{ descLine }}</p>
{% endfor %}
{% if item.viewMore and item.viewMore.size > 0 %}
<div class="view-more text-right">
{% for more in item.viewMore %}
<p>
<a class="more-link" href="{{ more.link }}">
{% assign icon = icons | where:"id",more.faIcon | first %}
<i class="{{ icon.icon_class }}"></i> {{ more.text }}
</a>
</p>
{% endfor %}
</div>
{% endif %}
</div><!--//item-->
{% endfor %}
{% else%}
<p>No other projects.</p>
{% endif %}
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->
{% endif %}
<section class="experience section">
<div class="section-inner">
<h2 class="heading">Work Experience</h2>
<div class="content">
{% assign jobs = site.data.jobs | where:"active",true | sort:"dates.start" | reverse %}
{% if jobs and jobs.size > 0 %}
{% for item in jobs limit:profile.config.resume.maxJobs %}
<div class="item">
<h3 class="title">{{ item.positionTitle }} -
<span class="place">
<a href="{{ item.companyLink }}">{{ item.companyName }}</a>
</span>
<span class="year">
{% if item.dates %}
{% if item.dates.start %}
{% assign startDate = item.dates.start | date: profile.config.general.projectsDateFormat %}
{% if item.dates.isPresent %}
({{ startDate }} - Present)
{% elsif item.dates.end and item.dates.end != "" %}
{% assign endDate = item.dates.end | date: profile.config.general.projectsDateFormat %}
{% if startDate != endDate %}
({{ startDate }} - {{ endDate }})
{% else %}
({{ startDate }})
{% endif %}
{% else %}
({{ startDate }})
{% endif %}
{% elsif item.dates.end %}
({{ item.dates.end | date:profile.config.general.projectsDateFormat }})
{% endif %}
{% endif %}
</span>
</h3>
<ul>
{% for task in item.tasks %}
<li>{{ task }}</li>
{% endfor %}
</ul>
</div><!--//item-->
{% endfor %}
{% else %}
No work experience.
{% endif %}
</div><!--//content-->
</div><!--//section-inner-->
</section><!--//section-->
</div><!--//primary-->
<div class="secondary col-md-4 col-sm-12 col-xs-12">
<aside class="info aside section">
<div class="section-inner">
<h2 class="heading sr-only">Basic Information</h2>
<div class="content">
<ul class="list-unstyled">
<li>
{% assign mapMarkerIcon = icons | where:"id","map-marker" | first %}
<i class="{{ mapMarkerIcon.icon_class }}"></i>
<span class="sr-only">Location:</span>
{% if profile.config.resume.showCity %}
{{ profile.location.city }},
{% endif %}
{% if profile.config.resume.showLongState %}
{{ profile.location.state }}
{% else %}
{{ profile.location.stateCode }}
{% endif %}
{% if profile.config.resume.showCountryCode %}
{{ profile.location.countryCode }}
{% endif %}
</li>
{% assign envelopeIcon = icons | where:"id","envelope" | first %}
<li><i class="{{ envelopeIcon.icon_class }}"></i><span class="sr-only">Email:</span><a href="mailto:{{ profile.email }}">{{ profile.email }}</a></li>
{% assign linkIcon = icons | where:"id","download" | first %}
<!--<li><i class="{{ linkIcon.icon_class }}"></i><a href="{{ profile.resumeLink }}">View Resume</a></li>-->
</ul>
</div><!--//content-->
</div><!--//section-inner-->
</aside><!--//aside-->
<aside class="skills aside section">
<div class="section-inner">
<h2 class="heading">Skills</h2>
<div class="content">
<div class="skillset">
{% assign skills = site.data.skills | where:"active",true | sort:"value" | reverse %}
{% if skills and skills.size > 0 %}
{% for item in skills limit:profile.config.resume.maxSkills %}
<div class="item">
<h3 class="level-title">{{ item.name }}<span class="level-label">{{ item.valueDescription }}</span></h3>
<div class="level-bar">
<div class="level-bar-inner" data-level="{{ item.value }}%">
</div>
</div><!--//level-bar-->
</div><!--//item-->
{% endfor %}
{% else %}
No skills.
{% endif %}
</div>
</div><!--//content-->
</div><!--//section-inner-->
</aside><!--//section-->
<aside class="education aside section">
<div class="section-inner">
<h2 class="heading">Publications</h2>
<div class="content">
<div class="item">
{% assign publications = site.data.publications | where:"active",true | sort:"publicationYear" | reverse %}
{% if publications and publications.size > 0 %}
{% for item in publications %}
<a href="{{ item.link }}">
{% assign icon = icons | where:"id",item.faIcon | first %}
<h3 class="title"><i class="{{ icon.icon_class }}"></i> {{ item.name }}</h3>
</a>
<h4 class="university">{{ item.description }}</h4>
{% endfor %}
{% else %}
No publications.
{% endif %}
</div><!--//item-->
</div><!--//content-->
</div><!--//section-inner-->
</aside><!--//section-->
<aside class="education aside section">
<div class="section-inner">
<h2 class="heading">Education</h2>
<div class="content">
{% assign education = site.data.education | sort:"yearStart" | reverse %}
{% if education and education.size > 0 %}
{% for item in education %}
<div class="item">
<h3 class="title">
{% assign icon = icons | where:"id",item.faIcon | first %}
<i class="{{ icon.icon_class }}"></i> {{ item.degree }}
</h3>
<h4 class="university">
<a href="{{ item.link }}">{{ item.school }}</a> <span class="year">
{% if item.dates %}
{% if item.dates.start %}
{% assign startDate = item.dates.start | date: profile.config.general.jobsDateFormat %}
{% if item.dates.isPresent %}
({{ startDate }} - Present)
{% elsif item.dates.end and item.dates.end != "" %}
{% assign endDate = item.dates.end | date: profile.config.general.jobsDateFormat %}
{% if startDate != endDate %}
({{ startDate }} - {{ endDate }})
{% else %}
({{ startDate }})
{% endif %}
{% else %}
({{ startDate }})
{% endif %}
{% elsif item.dates.end %}
({{ item.dates.end | date:profile.config.general.jobsDateFormat }})
{% endif %}
{% endif %}</span></h4>
</div><!--//item-->
{% endfor %}
{% else %}
No higher education.
{% endif %}
</div><!--//content-->
</div><!--//section-inner-->
</aside><!--//section-->
<aside class="languages aside section">
<div class="section-inner">
<h2 class="heading">Languages</h2>
<div class="content">
<ul class="list-unstyled">
{% assign languages = site.data.languages | where:"active",true | sort:"value" | reverse %}
{% if languages and languages.size > 0 %}
{% assign ratingIcon = icons | where:"id","star" | first %}
{% for item in languages %}
<li class="item">
<span class="title">
<strong>{{ item.name }}:</strong>
</span>
<span class="level">{{ item.valueDescription }} <br class="visible-xs"/>
{% for i in (1..item.value) %}
<i class="{{ ratingIcon.icon_class }}"></i>
{% endfor %}
</span>
</li><!--//item-->
{% endfor %}
{% else %}
No languages.
{% endif %}
</ul>
</div><!--//content-->
</div><!--//section-inner-->
</aside><!--//section-->
{% if profile.config.resume.showGitHubGraph %}
<aside class="github aside section">
<div class="section-inner">
<h2 class="heading">My GitHub</h2>
<div id="github-graph" class="github-graph"></div>
</div><!--//section-inner-->
</aside><!--//section-->
{% endif %}
</div><!--//secondary-->
</div><!--//row-->