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 181d67a commit 8672fae
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 17 deletions.
26 changes: 14 additions & 12 deletions _includes/pro/resume/skills.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
{% if resume.coreSkills and resume.coreSkills.size > 0 %}
<section class="npb">
<h2 id="core-skills" class="h3 hr-bottom">
{{ strings.resume.coreSkills | default:"Core Skills" }}
<span class="symbol {{ icons.coreSkills | default:'icon-star' }}"></span>
</h2>
<div class="skills-container">
{% for coreSkill in resume.skills.coreSkills %}
<span class="skill-pill">{{ coreSkill }}</span>
{% endfor %}
</div>
</section>
{% endif %}

{% if resume.skills.size > 0 %}
<section class="npb">
<h2 id="skills" class="h3 hr-bottom">
{{ strings.resume.skills | default:"Skills" }}
<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 @@ -65,7 +68,6 @@ <h2 id="skills" class="h3 hr-bottom">
</div>
{% endif %}
</dd>
{% endunless %}
{% endfor %}
</dl>
</section>
Expand Down
11 changes: 6 additions & 5 deletions resume-english.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,13 @@ resume:
#summary: >
url: 'https://www.tuev-club.de/656/tuev-know-how-club-seminare/'

coreSkills:
- 'Digital Transformation'
- 'Data Analysis'
- 'Process Optimization'
- 'Project Management'

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

0 comments on commit 8672fae

Please sign in to comment.