-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv-2p.html
104 lines (96 loc) · 2.6 KB
/
cv-2p.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
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
---
layout: default
plain: true
title: CV
---
{% assign cv = site.data.cv %}
<section id="cv-head">
<div id="cv-name">
<h1>{{ cv.name }}</h1>
<p id="cv-pdf">view CV in <a href="files/cv.pdf">pdf</a></p>
</div>
<div id="cv-contact">
<p>
<i class="icon-building"></i> {{ cv.contact.address}}<br />
<i class="icon-mail"></i> <a href="mailto:{{ cv.contact.email }}">{{ cv.contact.email }}</a><br />
<i class="icon-globe"></i> <a href="{{ cv.contact.website }}">{{ cv.contact.website }}</a>
</p>
</div>
</section>
<section id="cv-employment">
<h2>Employment</h2>
<ul>
{% assign job = cv.employment[0] %}
<li>
<div>
<p class="cv-employer">{{ job.employer }}</p>
<p class="cv-where">{{ job.where }}</p>
</div>
<div>
<p class="cv-job">{{ job.job }}</p>
<p class="cv-when">{{ job.when }}</p>
</div>
</li>
</ul>
</section>
<section id="cv-education">
<h2>Education</h2>
<ul>
{% assign degree = cv.education[0] %}
<li>
<div>
<p class="cv-school">{{ degree.school }}</p>
<p class="cv-where">{{ degree.where }}</p>
</div>
<div>
<p class="cv-degree">{{ degree.degree }}</p>
<p class="cv-when">{{ degree.when }}</p>
</div>
{% if degree.notes %}
<ul>
{% for n in degree.notes %}
<li>{{ n | markdownify }}</li>
{% endfor %}
</ul>
{% endif %}
</li>
</ul>
</section>
<section id="cv-publications">
<h2>Publications</h2>
<h3>Conference Papers</h3>
<ul>
{% for paper in site.data.papers %}
{% if paper.type == 'conference' %}
<li>{% include paper-cv.html paper=paper %}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section id="cv-awards">
<h2>Awards</h2>
<ul>
{% for a in cv.awards %}
<li>
<div>
<p class="cv-award">{{ a.what }}</p>
<p class="cv-when">{{ a.when }}</p>
</div>
</li>
{% endfor %}
</ul>
</section>
<section id="cv-service">
<h2>Service</h2>
<h3>Review Committees</h3>
<ul>
{% for c in cv.service.pc %}
<li>
<div>
<p class="cv-what">{{ c.what }} — {{ c.role }}</p>
<p class="cv-when">{{ c.when }}</p>
</div>
</li>
{% endfor %}
</ul>
</section>