-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatherine-hart-resume.html
More file actions
71 lines (58 loc) · 1.89 KB
/
catherine-hart-resume.html
File metadata and controls
71 lines (58 loc) · 1.89 KB
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
---
layout: pdf
pdf: true
---
{% for resume in site.resumes %}
<header>
<h1>{{ resume.name }}</h1>
<nav>
<ul>
{% for link in resume.links %}
<li><a href="{{ link.link }}">{{ link.name }}</a></li>
{% endfor %}
</ul>
</nav>
</header>
<section>
<h1>Employment & Voluntary Experience</h1>
{% for experience in resume.experiences %}
<article>
<h2>{{ experience.position }}, {{ experience.location }} ({{ experience.start }}–{{ experience.end | default: 'current' }})</h2>
<ul>
{% for note in experience.notes %}
<li>{{ note }}</li>
{% endfor %}
</ul>
</article>
{% endfor %}
</section>
<section class="repos">
<h1>Personal Work <span class="sidenote">See more at <a href="https://codehearts.com">codehearts.com</a> and <a href="https://github.com/codehearts">github.com/codehearts</a></span></h1>
{% for repo in site.repos %}
<article>
<h2>{{ repo.name }}</h2>
<a href="https://github.com/{{ repo.repo }}">github.com/{{ repo.repo }}</a>
{{ repo.content }}
</article>
{% endfor %}
<p></p>
</section>
<section class="list">
<h1>Education and Technology Experience</h1>
<ul>
{% for school in resume.education %}
<li>{{ school.where }}, {{ school.what }} ({{ school.when }})</li>
{% endfor %}
<li>Experienced in {{ resume.technologies.experienced | join: ', ' }}; less so in {{ resume.technologies.familiar | join: ', ' }}</li>
<li>Interested in {{ resume.technologies.interested | join: ', ' }}</li>
</ul>
</section>
<section class="list">
<h1>References</h1>
<ul>
{% for person in resume.references %}
<li>{{ person.name }}, {{ person.relation }} (<a href="{{ person.link }}">{{ person.link_label }}</a>)</li>
{% endfor %}
</ul>
</section>
{% endfor %}