-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
272 lines (221 loc) · 9.51 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
---
layout: page
---
<body class="theme-{% if site.resume_theme %}{{ site.resume_theme }}{% endif %}">
<div class="wrapper" itemscope itemtype="http://schema.org/Person">
<header class="page-header">
<!-- You can turn off the avatar in _config.yml by setting to false -->
<!--{% if site.resume_avatar == 'true' %}-->
<!--<img src="images/avatar.jpg" alt="my photo" class="avatar no-print" itemprop="image">-->
<!--{% endif %}-->
<!-- Your name is defined in the _config.yml file -->
<h1 class="header-name" itemprop="name">{{ site.resume_name }}</h1>
<!-- Contact buttons don't work in print, configure in the _config.yml file, remove "print-only" to display always. -->
<div class="header-contact-info print-only">
<p>{{ site.resume_header_contact_info }}</p>
</div>
<div class="title-bar no-print">
<h2 class="header-title" itemprop="jobTitle">{{site.resume_title}}</h2>
</div>
<div class="executive-summary no-print" itemprop="description">
{{ site.resume_header_intro }}
</div>
{% if site.resume_looking_for_work == 'yes' %}
<a href="mailto:{{ site.resume_contact_email }}" class="contact-button no-print" itemprop="email">Contact me</a>
{% elsif site.resume_looking_for_work == 'no' %}
<a class="contact-button not-looking no-print">I'm not looking for work right now.</a>
{% else %}
{% endif %}
</header>
{% if site.resume_section_experience %}
<!-- begin Experience -->
<section class="content-section">
<header class="section-header">
<h2>Experience</h2>
</header>
{% for job in site.data.experience %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">{{ job.company }}</h3>
<h4 class="resume-item-details" itemprop="description">{{ job.position }} • {{ job.duration }}</h4>
<p class="resume-item-copy">{{ job.summary }}</p>
</div><!-- end of resume-item -->
{% endfor %}
</section>
<!-- end Experience -->
{% endif %}
{% if site.resume_section_education %}
<!-- begin Education -->
<section class="content-section">
<header class="section-header">
<h2>Education</h2>
</header>
{% for education in site.data.education %}
<div class="resume-item" itemscope itemprop="alumniOf" itemtype="http://schema.org/CollegeOrUniversity">
<h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
<h4 class="resume-item-details group" itemprop="description">{{ education.degree }} • {{ education.year }}</h4>
<!-- <h5 class="resume-item-details award-title" itemprop="description">{{ education.award }}</h5> -->
<p class="resume-item-copy" itemprop="description">
<ul class="resume-item-list">
{% for award in education.awards %}
<li>{{ award.award }}</li>
{% endfor %}
</ul>
<p class="resume-item-copy">{{ education.summary }}</p>
</div>
{% endfor %}
</section>
<!-- end Education -->
{% endif %}
{% if site.resume_section_associations %}
<!-- begin Associations -->
<section class="content-section">
<header class="section-header">
<h2>Associations</h2>
</header>
{% for association in site.data.associations %}
<div class="resume-item" itemscope itemprop="memberOf" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">{% if association.url %}<a href="{{ association.url }}">{{ association.organization }}</a>{% else %}{{ association.organization }}{% endif %}</h3>
<h4 class="resume-item-details" itemprop="description">{{ association.role }} • {{ association.year }}</h4>
<p class="resume-item-copy">{{ association.summary }}</p>
</div>
{% endfor %}
</section>
<!-- end Associations -->
{% endif %}
{% if site.resume_section_publications%}
<!-- begin Publications -->
<section class="content-section">
<header class="section-header">
<h2>Publications</h2>
</header>
{% for publication in site.data.publications%}
<div class="resume-item" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="creator" content="{{ site.resume_name }}" itemtype="http://schema.org/Person" />
<h3 class="resume-item-title" itemprop="title">{{ publication.title }}
{% if publication.pdf %}
<a class="resume-item-icon-link" href={{publication.pdf}} target="_blank">
<img class="resume-item-icon" src="assets/icons/icon-adobe-pdf.svg" title="PDF" alt="PDF"></a>
{% endif %}
{% if publication.code %}
<a class="resume-item-icon-link" href={{publication.code}} target="_blank">
<img class="resume-item-icon" src="assets/icons/icon-github-code.svg" title="Code" alt="Code"></a>
{% endif %}
</h3>
<h4 class="resume-item-name" itemprop="name">
{% for author in publication.authors%}
{% if forloop.last == true %}
and
{% endif %}
{% if author contains 'Duc Nguyen' %}<u>{{author}}</u>{% else %}{{author}}{% endif %}{% if forloop.last == true %}{% else %}, {% endif %}
{% endfor %}
</h4>
<p class="resume-item-copy" itemprop="description">{{ publication.venue }} ({{ publication.year }}) </p>
{% if publication.note %}<p lass="resume-item-copy" itemprop="description">{{ publication.note }}</p>{% endif %}
</div>
{% endfor %}
</section>
<!-- end Publications -->
{% endif %}
{% if site.resume_section_skills %}
<!-- begin Skills -->
<section class="content-section">
<header class="section-header">
<h2>Skills</h2>
</header>
<p>Below is the list of programming languages that I enjoy and have used in certain non-trivial projects.
Those that I am at hello-world level or feel painful when using will not make it here. </p>
{% for skill in site.data.skills %}
<div class="resume-item">
<h4 class="resume-item-details">{{ skill.skill }}</h4>
<ul class="resume-item-list">
{% for desc in skill.description %}
<li>{{ desc }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</section>
<!-- end Skills -->
{% endif %}
{% if site.resume_section_recognition %}
<!-- begin Award -->
<section class="content-section">
<header class="section-header">
<h2>Awards</h2>
</header>
{% for award in site.data.awards %}
<div class="resume-item">
{% if award.award %}
<h3 class="resume-item-title" itemprop="award">{{ award.award }}</h3>
{% endif %}
{% if award.organization and award.year %}
<h4 class="resume-item-details">{{ award.organization }} • {{ award.year }}</h4>
{% endif %}
{% if award.summary %}
<p class="resume-item-copy">{{ award.summary }}</p>
{% endif %}
</div>
{% endfor %}
</section>
<!-- end Award -->
{% endif %}
<!-- activities -->
<section class="content-section">
<header class="section-header">
<h2>Activities</h2>
</header>
{% for activity in site.data.activities %}
<div class="resume-item">
<h3 class="resume-item-title" itemprop="award">{{ activity.activity }}</h3>
<h4 class="resume-item-details">{{ activity.description }} • {{ activity.date }}</h4>
</div>
{% endfor %}
</section>
<!-- end activities -->
{% if site.resume_section_interests %}
<!-- begin Interests -->
<section class="content-section">
<header class="section-header">
<h2>Hobbies</h2>
</header>
<div class="resume-item">
<ul class="resume-item-list">
{% for interest in site.data.interests %}
<li>{{ interest.description }}</li>
{% endfor %}
</ul>
</div>
</section>
<!-- end Interests -->
{% endif %}
{% if site.resume_section_links %}
<!-- begin Links -->
<section class="content-section">
<header class="section-header">
<h2>Additional Links</h2>
</header>
<div class="resume-item">
<ul class="resume-item-list">
{% for link in site.data.links %}
<li><a href={{ link.url }} itemprop="url">{{ link.description }}</a></li>
{% endfor %}
</ul>
</div>
</section>
<!-- end Links -->
{% endif %}
{% if site.resume_print_social_links %}
<!-- begin Print Social Links -->
<section class="content-section print-only">
<header class="section-header">
<h2>Social Links</h2>
</header>
<div class="resume-item">
{% include print-social-links.html %}
</div>
</section>
<!-- end Print Social Links -->
{% endif %}
<h5>Last updated: October 2022</h5>
</div>
</body>