Skip to content

Commit

Permalink
# Removed old CV for new one
Browse files Browse the repository at this point in the history
# Added sections to the CV
# Personalized the CV
  • Loading branch information
karapostK committed Jun 10, 2024
1 parent 7f2126f commit f18eb89
Show file tree
Hide file tree
Showing 11 changed files with 348 additions and 167 deletions.
33 changes: 17 additions & 16 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -609,19 +609,20 @@ third_party_libraries:
# Get external JSON data
# -----------------------------------------------------------------------------

#jekyll_get_json:
# - data: resume
# json: assets/json/resume.json # it can also be an url
#jsonresume:
# - basics
# - work
# - education
# - publications
# - projects
# - volunteer
# - awards
# - certificates
# - skills
# - languages
# - interests
# - references
jekyll_get_json:
- data: resume
json: assets/json/resume.json # it can also be an url
jsonresume:
- basics
- work
- education
- publications
- projects
- volunteer
- awards
- certificates
- skills
- languages
- interests
- references
- reviewer
2 changes: 1 addition & 1 deletion _includes/resume/languages.liquid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="list-groups">
{% for content in data[1] %}
<div class="list-group col-md-6">
<div class="list-group3 col-md-6">
<table class="table-cv list-group-table">
<tbody>
<tr>
Expand Down
8 changes: 7 additions & 1 deletion _includes/resume/references.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
{% for item in content.items %}
{% assign i = i | plus: 1 %}
{% endfor %}
<td colspan="{{ i }}" class="list-group-category">{{ content.name }}</td>
<td colspan="{{ i }}" class="list-group-category">
{% if content.url %}
<a href="{{ content.url }}" target="_blank">{{ content.name }}</a>
{% else %}
{{ content.name }}
{% endif %}
</td>
</tr>
<tr>
<td></td>
Expand Down
47 changes: 47 additions & 0 deletions _includes/resume/reviewer.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<ul class="card-text font-weight-light list-group list-group-flush">
{% assign reviewer = data[1] | sort: 'date' | reverse %}
{% for content in reviewer %}
<li class="list-group-item">
<div class="row">
<div class="col-xs-2 cl-sm-2 col-md-2 text-center date-column">
<table class="table-cv">
<tbody>
<tr>
<td>
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px">{{ content.date }}</span>
</td>
</tr>
{% if content.location %}
<tr>
<td>
<p class="location">
<i class="fa-solid fa-location-dot iconlocation"></i>
{{ content.location }}
</p>
</td>
</tr>
{% endif %}
</tbody>
</table>
</div>
<div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0">
<h6 class="title font-weight-bold ml-1 ml-md-4">
{% if content.url %}
<a href="{{ content.url }}" target="_blank">{{ content.organization }}</a>
{% else %}
{{ content.organization }}
{% endif %}
</h6>
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.summary }}</h6>
<ul class="items">
{% for item in content.highlights %}
<li>
<span class="item">{{ item }}</span>
</li>
{% endfor %}
</ul>
</div>
</div>
</li>
{% endfor %}
</ul>
11 changes: 10 additions & 1 deletion _includes/resume/skills.liquid
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<div class="p-1 pl-2 font-weight-light text">
<p>Gray items indicate previous experience.</p>
</div>

<div class="list-groups">
{% for content in data[1] %}
<div class="list-group col-md-6" title="{{ content.level }}">
Expand All @@ -22,7 +26,12 @@
<tr>
<td></td>
<td class="list-group-name">
<b>{{ item }}</b>
{% assign first_char = item | slice: 0, 1 %}
{% if first_char == "~" %}
<b><span style="color: gray">{{ item | remove: "~" }}</span></b>
{% else %}
<b>{{ item }}</b>
{% endif %}
</td>
</tr>
{% endfor %}
Expand Down
14 changes: 13 additions & 1 deletion _layouts/cv.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,17 @@ layout: default
{% if data[0] == 'meta' or data[1].size == 0 %} {% continue %} {% endif %}
<a class="anchor" id="{{ data[0] }}"></a>
<div class="card mt-3 p-3">
<h3 class="card-title font-weight-medium">{{ data[0] | capitalize }}</h3>
<h3 class="card-title font-weight-medium">
{% if data[0] == 'publications' %}
Selected Publications
{% elsif data[0] == 'work' %}
Experience
{% elsif data[0] == 'reviewer' %}
Reviewer Experience
{% else %}
{{ data[0] | capitalize }}
{% endif %}
</h3>
<div>
{% case data[0] %}
{% when 'basics' %}
Expand All @@ -105,6 +115,8 @@ layout: default
{% include resume/certificates.liquid %}
{% when 'references' %}
{% include resume/references.liquid %}
{% when 'reviewer' %}
{% include resume/reviewer.liquid %}
{% else %}

{% endcase %}
Expand Down
3 changes: 2 additions & 1 deletion _pages/cv.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ permalink: /cv/
title: CV
nav: true
nav_order: 4
cv_pdf: cv_pdf.pdf
cv_pdf: cv.pdf
description: "A PDF version of my CV is available for download on the side. Last updated on <b>2024-06-10</b>."
toc:
sidebar: left
---
9 changes: 9 additions & 0 deletions _sass/_cv.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ div.list-group {
align-items: flex-start;
margin-bottom: 2rem;
}
div.list-group3 {
flex: 1 1 calc(33.333% - 1rem);
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: flex-start;
margin-bottom: 2rem;
}


td.list-group-category {
color: var(--global-theme-color);
Expand Down
Loading

0 comments on commit f18eb89

Please sign in to comment.