This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
personal-website-old/pages/resume/fr.njk

192 lines
5.1 KiB
Plaintext
Raw Normal View History

---
username: Laureηt
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ username }}</title>
<link rel="stylesheet" href="{{ '/css/main.css' | url }}">
<link rel="stylesheet" href="{{ '/css/resume.css' | url }}">
<link rel="stylesheet" href="{{ '/css/blink.css' | url }}">
<link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | url }}">
<script src="{{ '/javascript/chaffle.min.js' | url }}"></script>
2021-03-09 20:34:33 +00:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/css/flag-icon.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/devicon/2.6/devicon.min.css" rel="stylesheet">
</head>
<body>
<header style="position: relative;">
<span data-chaffle-onload="" data-chaffle="en">{{ username }}</span>
<span class="blink" style="display:inline;">_</span>
<a style="right: 0px; position: absolute;" href="{{ '../' | url }}" ><span class="flag-icon flag-icon-gb"></span>EN</a>
</header>
<div class="row">
<div class="col-1">
<h1>{{ resume_fr.name }} <small>({{ resume_fr.info.label }})</small></h1>
<p>{{ resume_fr.info.about }}</p>
2021-03-09 20:34:33 +00:00
<hr>
<h2>Projets scolaires</h2>
{% for project in resume_fr.school_projects %}
<section>
<h3>{{ project.title }}</h3>
<p>{{ project.description }}</p>
2021-03-09 20:34:33 +00:00
<a class="fa fa-file-pdf-o" href="{{ project.pdf }}"> rapport</a>
</section>
{% endfor %}
2021-03-09 20:34:33 +00:00
<hr>
<h2>Projets personnels</h2>
{% for project in resume_fr.personnal_projects %}
<section>
<h3>{{ project.title }}</h3>
<p>{{ project.description }}</p>
</section>
{% endfor %}
2021-03-09 20:34:33 +00:00
<hr>
<h2>Lecture</h2>
<ul>
{% for read in resume_fr.reading %}
<li>
{% if read.type == 'website' %}
<a href="{{ read.url }}">{{ read.title | safe }}</a>
{% endif %}
</li>
{% endfor %}
</ul>
2021-03-09 20:34:33 +00:00
<hr>
<h2>Centres d'intérêt</h2>
{% for interest in resume_fr.interests %}
<section>
<h3>{{ interest.name }}</h3>
<p>{{ interest.summary }}</p>
<ul>
{% for tag in interest.tags %}
<li class="tag">{{ tag }}</li>
{% endfor %}
</ul>
</section>
{% endfor %}
</div>
<div class="col-2">
<h2>Contacts</h2>
<ul>
{% for contact in resume_fr.contacts %}
<li>
<span class="{{ contact.icon }}"></span>
<a href="{{ contact.url }}">{{ contact.contact }}</a>
</li>
{% endfor %}
</ul>
2021-03-09 20:34:33 +00:00
<hr>
<h2>Socials</h2>
<ul>
{% for social in resume_fr.socials %}
<li>
<span class="{{social.icon}}"></span>
<a href="{{social.url}}">{{social.network}}</a>
</li>
{% endfor %}
</ul>
2021-03-09 20:34:33 +00:00
<hr>
2021-03-14 11:06:29 +00:00
<h2>Éducation</h2>
<ul class="timeline">
<li class="event"></li>
<li class="year">{{ resume_fr.education.history[0].end }}</li>
{% for edu in resume_fr.education.history %}
<li class="event">
{{ edu.title }}<br>
<a href="{{ edu.url }}">{{ edu.institution }}</a>
</li>
<li class="year">{{ edu.start }}</li>
{% endfor %}
<li class="event"></li>
</ul>
2021-03-09 20:34:33 +00:00
<hr>
<h2>Compétences</h2>
<ul>
{% for skill in resume_fr.skills %}
<li>
2021-03-09 20:34:33 +00:00
{{ skill.name }}
{% if skill.level %}
<small> ({{ skill.level }}) </small>
{% endif %}
<ul>
{% for tag in skill.tags %}
<li class="tag">{{ tag }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
2021-03-09 20:34:33 +00:00
<hr>
<h2>Langues</h2>
<ul>
{% for lang in resume_fr.languages %}
<li>
<span class="{{ lang.icon }}"></span>
{{ lang.language }} <small>({{ lang.level }})</small>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="btn-back">
<span>&laquo;</span>
<a href="{{ '/' | url }}">Revenir en arrière</a>
</div>
<footer>
&copy; {% year %} {{ username }}
</footer>
<script>
var elm_mouseover = document.querySelectorAll('[data-chaffle]');
var elm_onload = document.querySelectorAll('[data-chaffle-onLoad]');
Array.prototype.forEach.call(elm_mouseover, function (el) {
var chaffle = new Chaffle(el)
el.addEventListener('mouseover', function () {
chaffle.init();
});
});
Array.prototype.forEach.call(elm_onload, function (el) {
var chaffle = new Chaffle(el)
chaffle.init();
setInterval(function(){
chaffle.init();
}, 10000)
});
</script>
</body>
</html>