Skip to content

Commit

Permalink
update about
Browse files Browse the repository at this point in the history
  • Loading branch information
Monika Wiśniewska committed Oct 30, 2023
1 parent 5423b8b commit 6eb6dd2
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 24 deletions.
8 changes: 8 additions & 0 deletions src/assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,11 @@ h1, h2, h3, h4 {
content: '••••';
color: var(--bs-primary);
}

.certificates {
margin-bottom: 0;
}

.certificates li {
padding-bottom: 0.6em;
}
19 changes: 11 additions & 8 deletions src/metadata/metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,34 +31,37 @@ module.exports = {
],
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.
`
title: ' ',
period: ' ',
skills: [],
contents: ` `
},
],
experience: [
{
header: 'Type Annotations in Python - Training - Udemy [2023]',
skills: ['python', 'typing'],
contents: ` `
},
{
header: 'Summer of Code - Challenge (Python, HTML, CSS, WebScraping, API) - FlyNerd [2023]',
skills: ['python', 'html', 'css'],
contents: ` `
},
{
header: 'Elements of AI - Course - Univeristy of Helsinki/Jagiellonian University [2023]',
skills: ['ai', 'introduction'],
contents: ` `
},
{
header: 'New You in IT - Challenge (Testing, Agile, Scrum) - COI [2023]',
skills: ['agile', 'scrum', 'testing'],
header: 'New You in IT - Challenge - COI [2023]',
skills: ['scrum', 'agile', 'testing'],
contents: ` `
},
{
header: 'GIT - Training - Udemy/DoKodu [2019, 2022]',
skills: ['git'],
contents: ` `
},
]
};
46 changes: 30 additions & 16 deletions src/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,24 @@ <h3 class="mb-4">Education</h3>
</div>

<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
TEST ABOUT
<p>About:</p>

<p>Additional:</p>
<ul class="certificates">
<li>Temporary home for dogs <a href='https://fundacjajudyta.com/'>(Judyta Foundation)</a>, </li>
<li>During Covid 'the dog in the crown' social campaign (dog walking), </li>
<li>Internship in a chemical laboratory (fuel industry), </li>
<li>Customer service work/Visual Merchandiser's assistant (in the store), </li>
<li>Household expense/budget planning, </li>
<li>Calendar management (arranging meetings, entering/remembering events, etc.), </li>
<li>Ability to use: Excel, MS Word, Autocad, </li>
<li>Driving License cat B</li>
</ul>
</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">Certificates</h3>
<ul class="mb-0">
<ul class="certificates">
<li>Postman - REST API Testing - Udemy [2023]</li>
<li><i class="fa-brands fa-github"></i>
Microsoft Build: Developer Tools Challenge (Git, Github) - Microsoft E-learning [2023]
Expand All @@ -107,13 +119,13 @@ <h3 class="mb-4">Certificates</h3>
<li><i class="fab fa-python"></i>Python E-Learning Course- PFP [2022]</li>
<li><i class="fab fa-python"></i>Python LevelUp:Dev Course (FastAPI) - DaftAcademy [2022]</li>
<li>Django Programming Course - Codemy/DoKodu/Udemy [2021-2023]</li>
<li><i class="fa-solid fa-database"></i>&nbsp;SQL Database Workshop - CODE:ME [2020, 2022]</li>
<li><i class="fa-solid fa-database"></i> SQL Database Workshop - CODE:ME [2020, 2022]</li>
<li><i class="fab fa-python"></i>Python Programming Course - CODE:ME [2019]</li>
</ul>
</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>
<!-- <div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1"> -->

{{#each positions}}
<div class="row d-block d-md-flex{{#unless @last}} mb-5{{/unless}}">
<div class="col-md-2 pt-1">
Expand All @@ -123,7 +135,6 @@ <h3 class="mb-4">Experience</h3>
<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>
Expand All @@ -132,21 +143,24 @@ <h3 class="fs-4 fw-normal">{{ title }}</h3>
</div>
</div>
{{/each}}
</div>

<h3 class="mb-4">Additional Informations</h3>
<!-- </div> -->

{{#each experience }}
<div class="mb-4">
<h3 class="fs-4 fw-normal">{{ header }}</h3>
{{{markdown contents }}}
<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">Additional Achievements</h3>
<ul class="mb-0">
{{#each experience}}
<li>{{ header }}</li>

{{{markdown contents }}}

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

</div>
</body>
</html>

0 comments on commit 6eb6dd2

Please sign in to comment.