-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
47 lines (46 loc) · 1.58 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
---
layout: default
title: Resume
---
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Summary</h2>
<p>Soon-to-be graduate from the University of
Louisville seeking an entry level
development or IT service position with an
engaging and growth-focused company.</p>
<h2>Technical Skills</h2>
{% for listing in site.data.resume.skills %}
<h5>{{ listing.name }}</h5>
<ul>
{% for skill in listing.skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
{% endfor %}
</div>
<div class="col-md-7 offset-md-1">
<h2>Education</h2>
{% for edu in site.data.resume.education %}
<h5>{{ edu.school }} | {{ edu.degree }}</h5>
<h6>{{ edu.city}}, {{ edu.state }} ({{ edu.start }} — {{ edu.end }})</h6>
<ul>
{% for note in edu.remarks %}
<li>{{ note }}</li>
{% endfor %}
</ul>
{% endfor %}
<h2>Professional Experience</h2>
{% for job in site.data.resume.professions %}
<h5>{{ job.company }} | {{ job.position }} | {{ job.type }}</h5>
<h6>{{ job.city}}, {{ job.state }} ({{ job.start }} — {{ job.end }})</h6>
<ul>
{% for note in job.remarks %}
<li>{{ note }}</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>
</div>