feat(resume): added one professional experience
This commit is contained in:
parent
fb8c9d683b
commit
c3abccae22
|
@ -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": [
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in a new issue