Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Monika Wiśniewska committed Oct 29, 2023
1 parent f38017f commit 2ba0bd8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
10 changes: 10 additions & 0 deletions src/metadata/metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ module.exports = {
['English', 75],
['Spanish', 25],
],
positions: [
{
title: 'GIT - Training - Udemy/DoKodu [2019, 2022]',
period: '1600 – 1601',
skills: ['comedy', 'love'],
contents: `
Viola finds herself shipwrecked in Illyria and, assuming that her brother Sebastian has died in the wreck, disguises herself as a man to gain a position in Duke Orsino's court. Orsino sends Viola (whom he knows as Cesario) to deliver a message to his love, Olivia. Olivia, however, dislikes the Duke. She falls in love with Viola, who she thinks is a man. Eventually, Viola's brother Sebastian, who in fact was unharmed in the wreck, reappears. At a critical moment, Viola's true identity is revealed when members of the court notice the similarities between her and Sebastian. Olivia quickly falls in love with Sebastian, and Viola confesses her love for the Duke.
`
},
],
experience: [
{
header: 'Type Annotations in Python - Training - Udemy [2023]',
Expand Down
20 changes: 19 additions & 1 deletion src/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,23 @@ <h3 class="mb-4">Certificates</h3>
</div>

<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
<h3 class="mb-4">Experience</h3>
{{#each positions}}
<div class="row d-block d-md-flex{{#unless @last}} mb-5{{/unless}}">

<div class="col-md-2 pt-1">
{{ period }}
</div>
<div class="col-md-10">
<h3 class="fs-4 fw-normal">{{ title }}</h3>

<div>{{{markdown contents }}}</div>

<p>
{{#each skills }}
<span class="badge text-body border border-1">{{ this }}</span>
{{/each}}
</p>
</div>
</div>
{{/each}}
</div>
Expand All @@ -125,6 +140,9 @@ <h3 class="mb-4">Additional Informations</h3>
{{#each experience}}
<div class="mb-4">
<h3 class="fs-4 fw-normal">{{ header }}</h3>

{{{markdown contents }}}

<div>
{{#each skills }}
<span class="badge text-body border border-1">{{ this }}</span>
Expand Down

0 comments on commit 2ba0bd8

Please sign in to comment.