Skip to content

Commit

Permalink
add: core skills section changed
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobgabriel committed Jan 3, 2025
1 parent 9d83757 commit 181d67a
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 41 deletions.
35 changes: 0 additions & 35 deletions _includes/pro/resume/basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,39 +102,4 @@
<a href="{{ basics.website }}" class="external no-print-link url u-url" property="sameAs">{{ basics.website }}</a>
</dd>
{% endif %}

{% if basics.coreSkills.size > 0 %}
<dt class="faded">
<span class="{{ icons.skills | default:'icon-star' }}" title="{{ strings.resume.skills | default:'Core Skills' }}"></span>
<span class="sr-only">{{ strings.resume.skills | default:"Core Skills" }}</span>
</dt>
<dd class="bold">
<div class="skills-container">
{% for skill in basics.coreSkills %}
<span class="skill-pill">{{ skill }}</span>
{% endfor %}
</div>
</dd>
{% endif %}
</dl>

<style>
.skills-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.skill-pill {
background-color: #1976d2; /* Primary color */
color: white;
padding: 5px 15px;
border-radius: 16px;
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
cursor: default;
user-select: none;
}
</style>
35 changes: 34 additions & 1 deletion _includes/pro/resume/skills.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ <h2 id="skills" class="h3 hr-bottom">
<span class="symbol {{ icons.skills | default:'icon-wrench' }}"></span>
</h2>
<dl class="skills" style="font-size: .8em;">
{% if resume.skills.coreSkills and resume.skills.coreSkills.size > 0 %}
<dt class="fl">Core Skills</dt>
<dd class="faded clearafter">
<div class="skills-container">
{% for coreSkill in resume.skills.coreSkills %}
<span class="skill-pill">{{ coreSkill }}</span>
{% endfor %}
</div>
</dd>
{% endif %}
{% for skl in resume.skills %}
{% unless skl.name == "coreSkills" %}
<dt class="fl">{{ skl.name }}</dt>
<dd class="faded clearafter">
{% if skl.level and skl.level != '' %}
Expand Down Expand Up @@ -54,7 +65,29 @@ <h2 id="skills" class="h3 hr-bottom">
</div>
{% endif %}
</dd>
{% endunless %}
{% endfor %}
</dl>
</section>
{% endif %}
{% endif %}

<style>
.skills-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.skill-pill {
background-color: #6c6f6d; /* Custom color */
color: white;
padding: 5px 15px;
border-radius: 16px;
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
cursor: default;
user-select: none;
}
</style>
10 changes: 5 additions & 5 deletions resume-english.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ resume:
- network: 'XING'
username: 'Jakob Gabriel'
url: 'https://www.xing.com/profile/Jakob_Gabriel4'
coreSkills:
- 'Digital Transformation'
- 'Data Analysis'
- 'Process Optimization'
- 'Project Management'

work:
- company: 'ContiTech Techno-Chemie GmbH - Karben'
Expand Down Expand Up @@ -324,6 +319,11 @@ resume:
url: 'https://www.tuev-club.de/656/tuev-know-how-club-seminare/'

skills:
coreSkills:
- 'Digital Transformation'
- 'Data Analysis'
- 'Process Optimization'
- 'Project Management'
- name: 'Project Management'
level: '2-3'
keywords:
Expand Down

0 comments on commit 181d67a

Please sign in to comment.