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/index.njk

178 lines
4.9 KiB
Plaintext
Raw Normal View History

2020-11-20 18:25:59 +00:00
---
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>
2020-11-26 18:20:36 +00:00
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet">
<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">
2020-11-20 18:25:59 +00:00
</head>
<body>
2020-11-26 22:09:39 +00:00
<header style="position: relative;">
2020-11-26 20:26:22 +00:00
<span data-chaffle-onload="" data-chaffle="en">{{ username }}</span>
<span class="blink" style="display:inline;">_</span>
2020-11-26 22:09:39 +00:00
<span style="right: 0px; position: absolute; border: 2px red dashed; color: white;">UNDER CONSTRUCTION</span>
2020-11-26 20:26:22 +00:00
</header>
<div class="row">
<div class="col-1">
<h1>{{ resume.name }} <small>({{ resume.info.label }})</small></h1>
<p>{{ resume.info.about }}</p>
2020-11-26 22:09:39 +00:00
<h2>Working experience</h2>
{% for work in resume.works %}
<section>
2020-11-26 22:36:51 +00:00
<h3>{{ work.title }} <small>{{ work.date }}</small></h3>
2020-11-26 22:09:39 +00:00
<p>{{ work.description }}</p>
</section>
{% endfor %}
2020-11-26 22:09:39 +00:00
<h2>Projects</h2>
2020-11-26 20:26:22 +00:00
{% for project in resume.projects %}
<section>
<h3>{{ project.title }}</h3>
<p>{{ project.description }}</p>
</section>
{% endfor %}
2020-11-26 20:26:22 +00:00
<h2>Reading</h2>
<ul>
{% for read in resume.reading %}
<li>
2020-11-26 20:26:22 +00:00
{% if read.type == 'website' %}
<a href="{{ read.url }}">{{ read.title | safe }}</a>
{% endif %}
</li>
2020-11-26 20:26:22 +00:00
{% endfor %}
</ul>
2020-11-26 20:26:22 +00:00
<h2>Interests</h2>
{% for interest in resume.interests %}
<section>
<h3>{{ interest.name }}</h3>
<p>{{ interest.summary }}</p>
</section>
{% endfor %}
</div>
2020-11-26 18:20:36 +00:00
2020-11-26 20:26:22 +00:00
<div class="col-2">
<h2>Contacts</h2>
<ul>
{% for contact in resume.contacts %}
<li>
<span class="{{ contact.icon }}"></span>
<a href="{{ contact.prefix + contact.link }}">
{% if contact.type == 'website' %}
Personnal website
{% else %}
{{ contact.link }}
{% endif %}
</a>
</li>
{% endfor %}
<li>
<span class="{{ resume.location.icon }}"></span>
<a href="{{ resume.location.link }}">{{ resume.location.address }}</a>
2020-11-26 18:20:36 +00:00
</li>
2020-11-26 20:26:22 +00:00
</ul>
2020-11-26 20:26:22 +00:00
<h2>Socials</h2>
<ul>
{% for social in resume.socials %}
<li>
<span class="{{social.icon}}"></span>
<a href="{{social.url}}">{{social.network}}</a>
</li>
{% endfor %}
</ul>
2020-11-26 20:26:22 +00:00
<h2>Education</h2>
<ul class="timeline">
<li class="event"></li>
<li class="year">{{ resume.education.history[0].end }}</li>
2020-11-26 22:09:39 +00:00
2020-11-26 20:26:22 +00:00
{% for edu in resume.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>
<h2>Skills</h2>
<ul>
{% for skill in resume.skills %}
<li>
{{ skill.name }} <small>({{ skill.level }})</small>
<ul>
{% for tag in skill.tags %}
<li class="tag">{{ tag }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<h2>Languages</h2>
<ul>
{% for lang in resume.languages %}
<li>
<span class="{{ lang.icon }}"></span>
{{ lang.language }} <small>({{ lang.level }})</small>
</li>
{% endfor %}
</ul>
2020-11-20 18:25:59 +00:00
2020-11-26 15:42:01 +00:00
</div>
2020-11-26 20:26:22 +00:00
</div>
2020-11-20 18:25:59 +00:00
2020-11-26 20:26:22 +00:00
<div class="btn-back">
<span>&laquo;</span>
<a href="{{ '/' | url }}">Go back</a>
</div>
2020-11-20 18:25:59 +00:00
2020-11-26 20:26:22 +00:00
<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();
2020-11-20 18:25:59 +00:00
});
2020-11-26 20:26:22 +00:00
});
Array.prototype.forEach.call(elm_onload, function (el) {
var chaffle = new Chaffle(el)
chaffle.init();
setInterval(function(){
2020-11-20 18:25:59 +00:00
chaffle.init();
2020-11-26 20:26:22 +00:00
}, 10000)
});
</script>
2020-11-20 18:25:59 +00:00
</body>
</html>