-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
53 lines (46 loc) · 1.46 KB
/
resume.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
---
layout: default
path: /resume
---
<h1 id="current" class="h3">What I Do</h1>
{% for position in site.data.resume.experience.current %}
<div class="d-flex justify-content-between flex-wrap">
<strong>{{position.title}} @ {{position.company}}</strong>
<div>{{position.start}} - {{position.end}}</div>
</div>
<div><em>{{position.location}}</em></div>
<ul>
{% for resp in position.responsibilities %}
<li>{{resp}}</li>
{% endfor %}
</ul>
{% endfor %}
<h1 id="past" class="h3">What I've Done</h1>
{% for position in site.data.resume.experience.past %}
<div class="d-flex justify-content-between flex-wrap">
<strong>{{position.title}} @ {{position.company}}</strong>
<div>{{position.start}} - {{position.end}}</div>
</div>
<div><em>{{position.location}}</em></div>
<ul>
{% for resp in position.responsibilities %}
<li>{{resp}}</li>
{% endfor %}
</ul>
{% endfor %}
<h1 id="skills" class="h3">Tech I Know</h1>
<div class="d-flex flex-wrap my-3">
{% for skill in site.data.resume.skills %}
<div style="flex-basis: 33%">{{skill}}</div>
{% endfor %}
</div>
<h1 id="education" class="h3">Where I Learned</h1>
{% assign school = site.data.resume.education %}
<div class="d-flex justify-content-between flex-wrap">
<div>
<div><strong>{{school.school}}</strong></div>
<div>{{school.degree}}, {{school.study}}</div>
</div>
<div>{{school.start}} - {{school.graduation}}</div>
</div>
<div><em>{{school.location}}</em></div>