-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added language toggle feature and English component variants
- Loading branch information
Showing
4 changed files
with
228 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<template> | ||
<h3 id="section">Certificates</h3> | ||
<div id="certSection"> | ||
<ol> | ||
<li id="certItems" v-for="item in certItems"> | ||
{{ item.role }} - {{ item.organisation }} - {{ item.date }} | ||
<li id="desc" v-for="r in item.desc"> | ||
{{ r }} | ||
</li> | ||
</li> | ||
</ol> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'certifications', | ||
data() { | ||
return { | ||
certItems: [ | ||
{ | ||
role: 'Azure Fundamentals Certificate', | ||
organisation: 'Microsoft', | ||
date: '2022', | ||
desc: [ | ||
'Able to demonstrate foundational knowledge of cloud concepts in general and Microsoft Azure in particular.' | ||
], | ||
} | ||
], | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
<style> | ||
#section { | ||
font-size: xx-large; | ||
text-align: left; | ||
padding-left: 15px; | ||
} | ||
#certItems { | ||
font-weight: bold; | ||
list-style-type: none; | ||
} | ||
#desc { | ||
font-weight: normal; | ||
list-style-type: square; | ||
} | ||
#certSection { | ||
padding: 25px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<template> | ||
<h3 id="section">Work Experience</h3> | ||
<div id="workSection"> | ||
<ol> | ||
<li id="workItems" v-for="item in workItems"> | ||
{{ item.role }} - {{ item.company }} - {{ item.date }} | ||
<li id="responsibilities" v-for="r in item.responsibilities"> | ||
{{ r }} | ||
</li> | ||
<br /> | ||
</li> | ||
</ol> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'exp', | ||
data() { | ||
return { | ||
workItems: [ | ||
{ | ||
role: 'IT Consultant', | ||
company: 'Experis AB', | ||
date: '2023-04 - Current', | ||
responsibilities: [ | ||
'Introduced, implemented and until today maintaining an attendance web app (Vue.js, .NET Core web API, Azure SQL DB, Azure Web App Service) to facilitate co-working at the office', | ||
'Competence development within design, development, and life cycle management of REST APIs', | ||
'Parental leave between Aug - Dec 2023' | ||
], | ||
}, | ||
{ | ||
role: 'Software developer', | ||
company: 'Formpipe Software AB', | ||
date: '2019-03 - 2023-04', | ||
responsibilities: [ | ||
'Developed and maintained custom controls using C# and Javascript (in ASP.NET)', | ||
'Maintained case and document management systems', | ||
'Investigated the feasibility of using new product in market', | ||
'Wrote and maintained over a dozen database scripts for data visualization', | ||
'Mentored two colleagues' | ||
], | ||
}, | ||
{ | ||
role: 'Technical support', | ||
company: 'Barkfors Fleet AB', | ||
date: '2020-05 - 2020-11', | ||
responsibilities: [ | ||
'Investigated reported issues on Barkfors’ transportation application for several customers', | ||
'Assisted and solved reported incidents from customers', | ||
'Deployed newer versions of T5 to customers’ environments' | ||
], | ||
}, | ||
], | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
<style> | ||
#section { | ||
font-size: xx-large; | ||
} | ||
#workItems { | ||
font-weight: bold; | ||
list-style-type: none; | ||
} | ||
#responsibilities { | ||
font-weight: normal; | ||
list-style-type: square; | ||
} | ||
#workSection { | ||
padding: 25px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<template> | ||
<h3 id="section">Volunteering work</h3> | ||
<div id="voluntarySection"> | ||
<ol> | ||
<li id="volItems" v-for="item in voluntaryItems"> | ||
{{ item.role }} - {{ item.organisation }} - {{ item.date }} | ||
<li id="responsibilities" v-for="r in item.responsibilities"> | ||
{{ r }} | ||
</li> | ||
</li> | ||
</ol> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'voluntaryWork', | ||
data() { | ||
return { | ||
voluntaryItems: [ | ||
{ | ||
role: 'Soccer coach', | ||
organisation: 'VSK', | ||
date: '2013 - 2019', | ||
responsibilities: [ | ||
'Planned and executed training sessions and coordinated car pooling to soccer matches for teenagers aged 10 - 12 years old.' | ||
], | ||
} | ||
], | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
<style> | ||
#section { | ||
font-size: xx-large; | ||
} | ||
#volItems { | ||
font-weight: bold; | ||
list-style-type: none; | ||
} | ||
#responsibilities { | ||
font-weight: normal; | ||
list-style-type: square; | ||
} | ||
#voluntarySection { | ||
padding: 25px; | ||
} | ||
</style> |