Skip to content

Commit

Permalink
add: core skills added
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobgabriel committed Jan 3, 2025
1 parent 7267a0b commit 9d83757
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
35 changes: 35 additions & 0 deletions _includes/pro/resume/basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,39 @@
<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>
7 changes: 6 additions & 1 deletion resume-english.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ resume:
url: 'https://www.linkedin.com/in/jakob-gabriel'
- network: 'XING'
username: 'Jakob Gabriel'
url: 'https://www.xing.com/profile/Jakob_Gabriel4'
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

0 comments on commit 9d83757

Please sign in to comment.