-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
134 lines (125 loc) · 8.03 KB
/
cv.html
File metadata and controls
134 lines (125 loc) · 8.03 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
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
---
layout: default
---
<div class="hello">
<h3>Below, I've compiled my talks, experience, and a few other useful bits of information. If you'd like this as a full-length CV, just hit print; if you'd like a formal resume, <a href="resume.html">click here for HTML</a> or <a href="Brendan%20O'Connor%20-%20Resume.pdf">click here for a PDF</a>.</h3>
</div>
<div class="categoryholder">
<input type="checkbox" id="educations-all" class="category-expander">
<label for="educations-all" class="category-label">Education <span class="uparrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/up.svg" | prepend: site.baseurl }}" alt="Collapse Category" ></span><span class="downarrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/down.svg" | prepend: site.baseurl }}" alt="Expand Category"></span></label>
<div class="educations category animated fadeIn">
{% for chunk in site.data.resume.education %}
<div class="education {{ chunk.tags | join }}">
<div class="title"> {{ chunk.title }}</div>
<div class="dates">{{ chunk.dates }}</div>
<div class="location">{{ chunk.location }}</div>
<ul>
{% for detail in chunk.details %}
<li> {{ detail }} </li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
<div class="categoryholder">
<input type="checkbox" id="experiences-all" class="category-expander">
<label for="experiences-all" class="category-label">Experience <span class="uparrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/up.svg" | prepend: site.baseurl }}" alt="Collapse Category"></span><span class="downarrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/down.svg" | prepend: site.baseurl }}" alt="Expand Category"></span></label>
<div class="experiences category animated fadeIn">
{% for chunk in site.data.resume.experience %}
<div class="experience {{ chunk.tags | join }}">
<div class="title"> {{ chunk.title }}</div>
<div class="dates">{{ chunk.dates }}</div>
<div class="location">{{ chunk.location }}</div>
<div class="prose">{{ chunk.prose }}</div>
</div>
{% endfor %}
</div>
</div>
<div class="categoryholder">
<input type="checkbox" id="presentations-all" class="category-expander">
<label for="presentations-all" class="category-label">Presentations <span class="uparrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/up.svg" | prepend: site.baseurl }}" alt="Collapse Category"></span><span class="downarrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/down.svg" | prepend: site.baseurl }}" alt="Expand Category"></span></label>
<div class="category presentations animated fadeIn">
{% for chunk in site.data.resume.presentations %}
<div class="presentation {{ chunk.tags | join }}">
<div class="title"> {{ chunk.title }}</div>
<div class="date">{{ chunk.date | date: "%B %-d, %Y"}}</div>
<div class="location">{{ chunk.location }} - {{ chunk.geo.properties.city }}</div>
{% if chunk.repeats %}
<div class="repeats">
{% for rep in chunk.repeats %}
<div class="date">{{ rep.date | date: "%B %-d, %Y"}}</div>
<div class="location">{{ rep.location }} - {{ rep.geo.properties.city }}</div>
{% endfor %}
</div>
{% endif %}
<div class="prose">{{ chunk.prose }}</div>
{% if chunk.abstract %}
<div class="abstractholder">
<input type="checkbox" id="presentation-{{ chunk.date }}-{{ chunk.title | truncate: 5 }}" class="presentation-expander">
<label for="presentation-{{ chunk.date }}-{{ chunk.title | truncate: 5 }}" class="presentation-expander-label">Abstract <span class="uparrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/up.svg" | prepend: site.baseurl }}" alt="Collapse Category"></span><span class="downarrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/down.svg" | prepend: site.baseurl }}" alt="Expand Category"></span></label>
<div class="abstract animated fadeIn">{{ chunk.abstract }}</div>
</div>
{% endif %}
<div class="links">
{% if chunk.url %}
<div class="url"><a href="{{ chunk.url | uri_escape }}" title="Link to Media on {{ chunk.title }} at {{ chunk.location }}"><img class="svg" src="{{ "/images/link.svg" | prepend: site.baseurl }}" alt="Link to Media on {{ chunk.title }} at {{ chunk.location }}"></a></div>
{% endif %}
{% if chunk.videourl %}
<div class="videourl"><a href="{{ chunk.videourl | uri_escape }}" title="Video of {{ chunk.title }} at {{ chunk.location }}"><img class="svg" src="{{ "/images/movie.svg" | prepend: site.baseurl }}" alt="Video of {{ chunk.title }} at {{ chunk.location }}"></a></div>
{% endif %}
{% if chunk.repeats %}
{% for rep in chunk.repeats %}
{% if rep.url %}
<div class="url"><a href="{{ rep.url | uri_escape }}" title="Link to Media on {{ chunk.title }} at {{ rep.location }}"><img class="svg" src="{{ "/images/link.svg" | prepend: site.baseurl }}" alt="Link to Media on {{ chunk.title }} at {{ rep.location }}"></a></div>
{% endif %}
{% if rep.videourl %}
<div class="videourl"><a href="{{ rep.videourl | uri_escape }}" title="Video of {{ chunk.title }} at {{ rep.location }}"><img class="svg" src="{{ "/images/movie.svg" | prepend: site.baseurl }}" alt="Video of {{ chunk.title }} at {{ rep.location }}"></a></div>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
<div class="categoryholder">
<input type="checkbox" id="publications-all" class="category-expander">
<label for="publications-all" class="category-label">Publications <span class="uparrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/up.svg" | prepend: site.baseurl }}" alt="Collapse Category"></span><span class="downarrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/down.svg" | prepend: site.baseurl }}" alt="Expand Category"></span></label>
<div class="publications category animated fadeIn">
{% for chunk in site.data.resume.publications %}
<div class="publication {{ chunk.tags | join }}">
<div class="title"> {{ chunk.title }}</div>
<div class="date">{{ chunk.date }}</div>
<div class="location">{{ chunk.location }}</div>
<div class="prose">{{ chunk.prose }}</div>
<div class="links">
{% if chunk.url %}
<div class="url"><a href="{{ chunk.url | uri_escape }}" title="Link to Media on {{ chunk.title }} at {{ chunk.location }}"><img class="svg" src="{{ "/images/link.svg" | prepend: site.baseurl }}" alt="Link to Media on {{ chunk.title }} at {{ chunk.location }}"></a></div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
<div class="categoryholder">
<input type="checkbox" id="certifications-all" class="category-expander">
<label for="certifications-all" class="category-label">Certifications & Memberships<span class="uparrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/up.svg" | prepend: site.baseurl }}" alt="Collapse Category"></span><span class="downarrow animated fadeIn"><img class="svg" width=16 src="{{ "/images/down.svg" | prepend: site.baseurl }}" alt="Expand Category"></span></label>
<div class="certifications category animated fadeIn">
{% for org in site.data.resume.certifications %}
{% for chunk in org.credentials %}
<div class="certification {{ chunk.tags | join }}">
<div class="title">
{% if chunk.url %}
<a href="{{ chunk.url | uri_escape }}" title="Link to Media on {{ chunk.title }} at {{ chunk.location }}">{{ chunk.title }}</a>
{% else %}
{{ chunk.title }}
{% endif %}
</div>
<div class="date">{{ chunk.date | date: "%B %-d, %Y"}}</div>
</div>
{% endfor %}
<div class="organization">{{ org.organization }}</div>
{% endfor %}
</div>
</div>