Skip to content

Commit

Permalink
Fix the previous CL.
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenLisa committed Aug 30, 2024
1 parent 769b3b9 commit 6785987
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 29 deletions.
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ GEM

PLATFORMS
arm64-darwin-21
arm64-darwin-23

DEPENDENCIES
jekyll-remote-theme
Expand Down
6 changes: 5 additions & 1 deletion _data/education.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
notes: "Supervisor: Prof. Dr. Eric Bodden"
categories: education
- title: "Master in Computer Science (M.Sc.)"
date: "2014 - 2019"
date: "2012 - 2014"
organization: "Ecole Polytechnique Fédérale de Lausanne"
awards: "ISSS Excellence Award"
notes: "Specialization in Internet Computing"
categories: education
- title: "Ecole d'ingénieurs"
date: "2011 - 2012"
organization: "ESIEE Paris"
categories: education
7 changes: 1 addition & 6 deletions _data/experience.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
- name: "Senior Software Engineer"
date: "2021 - now"
organization: "Google"
link: ""
categories: experience
- name: "Software Engineer"
date: "2019 - 2021"
organization: "Google"
link: ""
categories: experience
- name: "Researcher"
- name: "Research Associate"
date: "2014 - 2019"
organization: "Paderborn University, Fraunhofer IEM, Fraunhofer SIT"
link: ""
categories: experience
- name: "Software Engineering Intern"
date: "2017"
organization: "Google"
link: ""
categories: experience
- name: "Site Reliability Engineering Intern"
date: "2016"
organization: "Google"
link: ""
categories: experience
2 changes: 2 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ <h2 id="title">
<section class="content">
<ul class="menu">
<li><a href= "/#">Home</a></li>
<li><a href= "/#experience">Experience</a></li>
<li><a href= "/#education">Education</a></li>
<li><a href= "/#projects">Research projects</a></li>
<li><a href= "/#distinctions">Distinctions</a></li>
<li><a href= "/#publications">Publications</a></li>
Expand Down
39 changes: 18 additions & 21 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,45 +37,42 @@ <h1>Experience</h1>
<li>
<div class="post-meta">
<div class="post-date">
<a id="{{ post.name | strip_html | strip_newlines | remove_chars | escape | remove: ' ' | downcase }}" class="menu-anchor">
{%- if post.link.size > 0 -%}
<a class="post-link" href="{{ post.link }}">
{%- endif -%}
<h2 class="post-title">{{ post.name | escape }}</h2>
{%- if post.link %}
</a>
{%- endif -%}
<a id="{{ post.name }}" class="menu-anchor">
<h2 class="post-title">{{ post.name | escape }}</h2>
</a>
</div>
<div class="post-categories post-date">
{{ post.organization }} - <i class="icon-calendar"></i> {{ post.date}}
{{ post.organization }} - <i class="icon-calendar"></i> {{ post.date }}
</div>
</div>
</li>
{%- endfor -%}
</ul>
{%- endif -%}

{%- if site.categories.education.size > 0 -%}
{%- if site.data.education.size > 0 -%}
<ul class="posts">
<a id="education" class="menu-anchor">
<h1>Education</h1>
</a>
{%- for post in site.categories.education -%}
{%- for post in site.data.education -%}
<li>
<h2 class="post-title">{{ post.title | escape }}</h2>
<div class="post-meta">
<div class="post-date">
<i class="icon-calendar"></i>
{{ post.display_date }} -
{%- if post.awards.size > 0 -%}
<span class="awards">
<i class="icon-award"></i>
{{ post.awards }}
</span>
{%- endif -%}
- {{ post.notes }}
<h2 class="post-title">{{ post.title }}</h2>
</div>
<div class="post-categories post-date">
{{ post.organization }} - <i class="icon-calendar"></i> {{ post.date }}
</div>
</div>
<div class="post">
{{ post.notes }}
{%- if post.awards.size > 0 -%}
<span class="awards">
<i class="icon-award"></i>
{{ post.awards }}
</span>
{%- endif -%}
</div>
</li>
{%- endfor -%}
Expand Down
2 changes: 1 addition & 1 deletion _sass/plain.scss
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ main {
.post-date {
margin-right: 10px;
color: #555;
min-width: 150px;
min-width: 10px;
}
.post-meta {
display: flex;
Expand Down
20 changes: 20 additions & 0 deletions search.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,26 @@ sitemap:
"excerpt" : "{{ post.excerpt | strip_html | strip_newlines | remove_chars | escape }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %},
{% for post in site.data.experience %}
{
"title" : "{{ post.name | escape }}",
"categories" : "{{ post.categories }}",
"date" : "{{ post.date }}",
"organization" : "{{ post.organization | escape }}",
"url" : "#experience"
} {% unless forloop.last %},{% endunless %}
{% endfor %},
{% for post in site.data.education %}
{
"title" : "{{ post.title | escape }}",
"categories" : "{{ post.categories }}",
"date" : "{{ post.date }}",
"organization" : "{{ post.organization | escape }}",
"awards" : "{{ post.awards | escape }}",
"notes" : "{{ post.notes | escape }}",
"url" : "#education"
} {% unless forloop.last %},{% endunless %}
{% endfor %},
{% for post in site.data.distinctions %}
{
"title" : "{{ post.name | escape }}",
Expand Down

0 comments on commit 6785987

Please sign in to comment.