Skip to content

Commit b3415b2

Browse files
committed
Updates
1 parent aa519a9 commit b3415b2

11 files changed

Lines changed: 39 additions & 55 deletions

File tree

Gemfile.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ GEM
7575
logger (>= 1.0, < 2)
7676
loofah (>= 2.3.1, < 3)
7777
sax-machine (>= 1.0, < 2)
78+
ffi (1.17.2)
7879
ffi (1.17.2-aarch64-linux-gnu)
7980
ffi (1.17.2-aarch64-linux-musl)
8081
ffi (1.17.2-arm-linux-gnu)
@@ -160,6 +161,7 @@ GEM
160161
jekyll-paginate-v2 (3.0.0)
161162
jekyll (>= 3.0, < 5.0)
162163
jekyll-regex-replace (1.1.0)
164+
jekyll-remote-include (1.0.2)
163165
jekyll-sass-converter (3.1.0)
164166
sass-embedded (~> 1.75)
165167
jekyll-scholar (7.2.2)
@@ -200,11 +202,15 @@ GEM
200202
matrix (0.4.3)
201203
mercenary (0.4.0)
202204
mini_mime (1.1.5)
205+
mini_portile2 (2.8.9)
203206
minitest (5.26.2)
204207
multi_xml (0.7.2)
205208
bigdecimal (~> 3.1)
206209
namae (1.2.0)
207210
racc (~> 1.7)
211+
nokogiri (1.18.10)
212+
mini_portile2 (~> 2.8.2)
213+
racc (~> 1.4)
208214
nokogiri (1.18.10-aarch64-linux-gnu)
209215
racc (~> 1.4)
210216
nokogiri (1.18.10-aarch64-linux-musl)
@@ -301,6 +307,7 @@ DEPENDENCIES
301307
jekyll-minifier
302308
jekyll-paginate-v2
303309
jekyll-regex-replace
310+
jekyll-remote-include
304311
jekyll-scholar
305312
jekyll-sitemap
306313
jekyll-tabs

_bibliography/papers.bib

Lines changed: 0 additions & 48 deletions
Large diffs are not rendered by default.

_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ collections:
142142
output: true
143143
projects:
144144
output: true
145+
teaching:
146+
output: true
147+
team:
148+
output: true
145149

146150
# -----------------------------------------------------------------------------
147151
# Jekyll settings

_includes/resume/certificates.liquid

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<div class="list-groups">
2-
{% assign certificates = data[1] | sort: 'date' | reverse %}
2+
{% if data[1] %}
3+
{% assign certificates = data[1] | sort: 'date' | reverse %}
4+
{% else %}
5+
{% assign certificates = "" | split: "," %}
6+
{% endif %}
37
{% for content in certificates %}
48
<div class="list-group col-md-6">
59
<table class="table-cv list-group-table">

_includes/resume/education.liquid

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<ul class="card-text font-weight-light list-group list-group-flush">
2-
{% assign education = data[1] | sort: 'startDate' | reverse %}
2+
{% if data[1] %}
3+
{% assign education = data[1] | sort: 'startDate' | reverse %}
4+
{% else %}
5+
{% assign education = "" | split: "," %}
6+
{% endif %}
37
{% for content in education %}
48
<li class="list-group-item">
59
<div class="row">

_includes/resume/publications.liquid

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<ul class="card-text font-weight-light list-group list-group-flush">
2-
{% assign publications = data[1] | sort: 'releaseDate' | reverse %}
2+
{% if data[1] %}
3+
{% assign publications = data[1] | sort: 'releaseDate' | reverse %}
4+
{% else %}
5+
{% assign publications = "" | split: "," %}
6+
{% endif %}
37
{% for content in publications %}
48
<li class="list-group-item">
59
<div class="row">

_includes/resume/volunteer.liquid

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<ul class="card-text font-weight-light list-group list-group-flush">
2-
{% assign volunteer = data[1] | sort: 'startDate' | reverse %}
2+
{% if data[1] %}
3+
{% assign volunteer = data[1] | sort: 'startDate' | reverse %}
4+
{% else %}
5+
{% assign volunteer = "" | split: "," %}
6+
{% endif %}
37
{% for content in volunteer %}
48
<li class="list-group-item">
59
<div class="row">

_includes/resume/work.liquid

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<ul class="card-text font-weight-light list-group list-group-flush">
2-
{% assign work = data[1] | sort: 'startDate' | reverse %}
2+
{% if data[1] %}
3+
{% assign work = data[1] | sort: 'startDate' | reverse %}
4+
{% else %}
5+
{% assign work = "" | split: "," %}
6+
{% endif %}
37
{% for content in work %}
48
<li class="list-group-item">
59
<div class="row">

_pages/teaching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ horizontal: true
6262
</div>
6363
{% endif %}
6464
{% endif %}
65-
</div>
65+
</div>

_pages/team.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ horizontal: true
6262
{%- endif -%}
6363
{%- endif -%}
6464

65-
</div>
65+
</div>

0 commit comments

Comments
 (0)