fix: moved programming languages in their own section

This commit is contained in:
Laureηt 2021-11-29 22:47:11 +01:00
parent 6aa335bf65
commit 714e9af146
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
3 changed files with 23 additions and 5 deletions

View file

@ -220,7 +220,12 @@
"language": "Spanish",
"level": "elementary",
"icon": "flag-icon flag-icon-es"
},
}
]
},
"langages": {
"title": "Programming languages",
"list": [
{
"language": "Python",
"level": "intermediate",

View file

@ -127,7 +127,6 @@
}
]
},
"skills_title": "",
"skills": {
"title": "Compétences",
"list": [
@ -195,7 +194,6 @@
}
]
},
"languages_title": "",
"languages": {
"title": "Langues",
"list": [
@ -218,7 +216,12 @@
"language": "Espagnol",
"level": "élémentaire",
"icon": "flag-icon flag-icon-es"
},
}
]
},
"langages": {
"title": "Langages",
"list": [
{
"language": "Python",
"level": "intermédiaire",

View file

@ -37,7 +37,6 @@ permalink: "resume/{{ resume.locale }}/index.html"
<h1>{{ resume.name }}
<small>({{ resume.info.label }})</small>
</h1>
<p>{{ resume.info.about }}</p>
<hr>
@ -200,6 +199,17 @@ permalink: "resume/{{ resume.locale }}/index.html"
{% endfor %}
</ul>
<h2>{{ resume.langages.title }}</h2>
<ul>
{% for lang in resume.langages.list %}
<li>
<span class="{{ lang.icon }}"></span>
{{ lang.language }}
<small>({{ lang.level }})</small>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endblock content %}