Skip to content

Commit

Permalink
Add skills, update data
Browse files Browse the repository at this point in the history
  • Loading branch information
bigscoop committed Sep 30, 2024
1 parent 875bfce commit e6c5cbe
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 42 deletions.
37 changes: 22 additions & 15 deletions _data/data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ sidebar:
- idiom: Russisch
level: Muttersprache

skills:
title: Skills

info:
- item: "Klinische Software: Kisim"
- item: "Datenanalyse: IBM SPSS"

interests:
title: Interessen
info:
Expand All @@ -73,40 +80,40 @@ education:
time: 02.2024 - 07.2024

- degree: Master of Medicine UZH
university: Universität Zürich, Medizinische Fakultät, CH
university: Medizinische Fakultät, Universität Zürich, CH
time: 2018 - 2022

- degree: Unterassistentin
university: Spital Uster, Gynäkologie und Geburtshilfe, CH
university: Gynäkologie und Geburtshilfe, Spital Uster, CH
time: 06.2021 - 07.2021
- degree: Unterassistentin
university: Hirslanden, Klinik für Neurologie, CH
university: Klinik für Neurologie, Hirslanden, CH
time: "05.2021"
- degree: Unterassistentin
university: USZ, Klinik für Ohren-, Nasen-, Hals- und Gesichtschirurgie, CH
university: Klinik für Ohren-, Nasen-, Hals- und Gesichtschirurgie, USZ, CH
time: "04.2021"
- degree: Unterassistentin
university: Stadspital Waid, Klinik für Viszeral-, Thorax- und Gefässchirurgie, CH
university: Klinik für Viszeral-, Thorax- und Gefässchirurgie, Stadspital Waid, CH
time: 02.2021 - 03.2021
- degree: Unterassistentin
university: USZ, Klinik und Poliklinik für Innere Medizin, CH
university: Klinik und Poliklinik für Innere Medizin, USZ, CH
time: 10.2020 - 12.2020
- degree: Unterassistentin
university: USZ, Dermatologische Klinik, CH
university: Dermatologische Klinik, USZ, CH
time: "03.2020"
- degree: Unterassistentin
university: USZ, Gynäkologie und Geburtshilfe, CH
university: Gynäkologie und Geburtshilfe, USZ, CH
time: 10.2019 - 11.2019

- degree: Bachelor Humanmedizin
university: Universität Zürich, CH
university: Medizinische Fakultät, Universität Zürich, CH
time: 2017 - 2018

- degree: Deutsch als Fremdsprache, Stufe C1
university: ZHAW Angewandte Linguistik, CH
time: 09.2016 - 03.2017

- degree: Ärztin
- degree: Master of Humanmedizin
university: Belarussische Staatliche Medizinische Universität, BY
time: 2000 - 2006

Expand All @@ -133,14 +140,14 @@ experiences:
company: Stadtsspital Molodetschno, Belarus.

certifications:
title: Zertifikate
title: Diplome, Zertifikate
list:
- name: Eidgenössisches Arztdiplom
organization: Eidgenössisches Departement des Innern, CH
start: "10.2022"

- name: Master of Medicine UZH
organization: Universität Zürich, Medizinische Fakultät, CH
organization: Medizinische Fakultät, Universität Zürich, CH
start: "10.2022"

- name: Dialektverstehen und Deutsch im Schweizer Alltag, B2-C1
Expand All @@ -163,17 +170,17 @@ certifications:
organization: Stadt Zürich, Integrationsförderung, CH
start: "12.2016"

- name: Arztdiplom
- name: Master of Humanmedizin
organization: Belarussische Staatliche Medizinische Universität, BY
start: "06.2006"

publications:
title: Publikationen
papers:
- title: Pancreatic fistulas following distal pancreatectomy are unrelated to the texture quality of the pancreas
- title: Pancreatic fistulas following distal pancreatectomy are unrelated to the texture quality of the pancreas.
link: "https://link.springer.com/article/10.1007/s00423-020-02071-y"
authors: Eshmuminov, D., Karpovich, I., Kapp, J. et al.
conference: Langenbecks Arch Surg 406, 729734 (2021)
conference: Langenbecks Arch Surg. 2021;406(3):729-734. doi:10.1007/s00423-020-02071-y

references:
title: Referenzen
Expand Down
1 change: 1 addition & 0 deletions _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ <h3 class="tagline">{{ sidebar.tagline | markdownify }}</h3>
{% endif %}

{% include language.html %}
{% include skills.html %}
{% include interests.html %}

{% if sidebar.about %}
Expand Down
38 changes: 17 additions & 21 deletions _includes/skills.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
{% assign skills = site.data.data.skills %} {% if skills %}
<section class="skills-section section">
<h2 class="section-title">
<span class="fa-stack fa-xs">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-wrench fa-stack-1x fa-inverse"></i>
</span>
{% assign skills = site.data.data.sidebar.skills %}
{% if skills %}
<div class="skills-container container-block">

<h2 class="container-block-title"><span class="fas fa-wrench"></span>
{{ skills.title }}
</h2>

<div class="skillset">
{% for skill in skills.toolset %}
<div class="item">
<h3 class="level-title">{{ skill.name }}</h3>
{% assign skill_level = 'width: ' | append: skill.level %}
<div class="level-bar">
<div class="level-bar-inner" style="{{skill_level}}"></div>
</div>
<!--//level-bar-->
</div>
<!--//item-->
<ul class="list-unstyled skills-list">
{% for skill in skills.info %}

{% if skill.link %}
<li><a href="{{ skill.link }}">{{ skill.item }}</a></li>
{% else %}
<li>{{ skill.item }}</li>
{% endif %}

{% endfor %}
</div>
</section>
<!--//skills-section-->
</ul>

</div><!--//skills-->
{% endif %}
6 changes: 4 additions & 2 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ p {
}
}

.interests-list {
.interests-list,
.skills-list {
margin-bottom: 0;
li {
margin-bottom: 10px;
Expand Down Expand Up @@ -276,7 +277,7 @@ p {

.skillset {
.item {
margin-bottom: 15px;
margin-bottom: 5px;
overflow: hidden;
}
.level-title {
Expand All @@ -285,6 +286,7 @@ p {
margin-bottom: 12px;
}
.level-bar {
display: none;
height: 12px;
background: $smoky-white;
@include border-radius(2px);
Expand Down
2 changes: 1 addition & 1 deletion _sass/_responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

.skillset .level-title {
float: left;
width: 30%;
//width: 30%;
margin-bottom: 0;
}

Expand Down
Binary file modified assets/pdf/Dr-Iryna-Karpovich-Lebenslauf.pdf
Binary file not shown.
3 changes: 0 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,3 @@
{% include oss-contributions.html %}

{% include publications.html %}

{% include skills.html %}

0 comments on commit e6c5cbe

Please sign in to comment.