-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
75 lines (74 loc) · 2.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
layout: default
title: Resume
---
<article id="resume">
<section id="work-history">
<h1 class="section-title">Work History</h1>
<ul id="work-history-list">
{% for experience in site.work_history %}
<li id="work-history-item">
<h2 class="work-history-item-title">{{experience.company_name}}</h2>
<table>
<tr>
<td>Job Title</td>
<td>{{experience.job_title}}</td>
</tr>
<tr>
<td>Start Date</td>
<td>{{experience.start_date}}</td>
</tr>
{% if experience.end_date %}
<tr>
<td>End Date</td>
<td>{{experience.end_date}}</td>
</tr>
{% endif %}
</table>
{{ experience.content }}
</li>
{% endfor %}
</ul>
</section>
<section id="education">
<h1 class="section-title">Education</h1>
<ul id="school-list">
{% for education in site.education %}
<li class="school">
<table>
<tr>
<td>School</td>
<td>{{education.school}}</td>
</tr>
<tr>
<td>Country/Region</td>
<td>{{education.country_region}}</td>
</tr>
<tr>
<td>State/Province</td>
<td>{{education.state_province}}</td>
</tr>
<tr>
<td>Start Year</td>
<td>{{education.start_year}}</td>
</tr>
{% if education.end_year %}
<tr>
<td>End Year</td>
<td>{{education.end_year}}</td>
</tr>
{% endif %}
<tr>
<td>Field Of Study</td>
<td>{{education.field_of_study}}</td>
</tr>
<tr>
<td>Level Of Education</td>
<td>{{education.level_of_education}}</td>
</tr>
</table>
</li>
{% endfor %}
</ul>
</section>
</article>