feat(resume): added one professional experience

This commit is contained in:
Laureηt 2021-11-06 22:55:32 +01:00
parent fb8c9d683b
commit c3abccae22
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
3 changed files with 34 additions and 1 deletions

View file

@ -47,6 +47,16 @@
}
]
},
"experience": {
"title": "Professional experience",
"list": [
{
"title": "Bio-cleaning agent",
"description": "Blue-collar internship at the Centrer Hospitalier Régional Universitaire de Brest (CHRU) for a two-month period. I learned to organize and work efficiently in a team.",
"date": "Summer 2021"
}
]
},
"school_projects": {
"title": "School projects",
"list": [

View file

@ -89,10 +89,20 @@
}
]
},
"experience": {
"title": "Expérience professionnelle",
"list": [
{
"title": "Agent de bio-nettoyage",
"description": "Stage ouvrier au Centre Hospitalier Régional Universitaire de Brest (CHRU) pour une période de deux mois. J'ai appris à m'organiser et à travailler efficacement en équipe.",
"date": "Été 2021"
}
]
},
"education": {
"title": "Éducation",
"level": "Master degree",
"history": [
"list": [
{
"institution": "ENSEEIHT",
"title": "Ingénieur SN",

View file

@ -41,6 +41,19 @@ permalink: "resume/{{ resume.locale }}/index.html"
<hr>
<h2>{{ resume.experience.title }}</h2>
{% for exp in resume.experience.list %}
<section>
<h3>
{{ exp.title }}
<small>({{ exp.date }})</small>
</h3>
<p>{{ exp.description }}</p>
</section>
{% endfor %}
<hr>
<h2>{{ resume.school_projects.title }}</h2>
{% for project in resume.school_projects.list %}
<section>