This repository has been archived by the owner on Jun 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
52 lines (47 loc) · 2.77 KB
/
cv.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
layout: default
title: "Experiences"
---
<div class="container ph pb">
<header class="pt+">
<h1>{{ page.title }}</h1>
</header>
<p>Here's a list of my differents jobs <img data-src="{{ site.iconic_url }}svg/smart/briefcase.svg" src="{{ site.iconic_url }}png/black/standard/briefcase-sm.png" class="iconic iconic-sm" alt="briefcase">, studies <img data-src="{{ site.iconic_url }}svg/smart/book.svg" src="{{ site.iconic_url }}png/black/standard/book-sm.png" class="iconic iconic-sm" alt="book"> and some of my side projects <img data-src="{{ site.iconic_url }}svg/smart/beaker.svg" src="{{ site.iconic_url }}png/black/standard/beaker-sm.png" class="iconic iconic-sm" alt="beaker">.<br>All these informations are available on <a href="http://ch.linkedin.com/in/cedricaellen">Linkedin</a>.</p>
{% for experience in site.data.experiences %}
<article style="position:relative;">
<header>
<h2 class="mb0"><span class="side-element hidden-portable">
{% if experience.category == 'job' %}
<img data-src="{{ site.iconic_url }}svg/smart/briefcase.svg" src="{{ site.iconic_url }}png/black/standard/briefcase-md.png" class="iconic iconic-md" alt="briefcase">
{% elsif experience.category == 'studies' %}
<img data-src="{{ site.iconic_url }}svg/smart/book.svg" src="{{ site.iconic_url }}png/black/standard/book-md.png" class="iconic iconic-md" alt="book">
{% elsif experience.category == 'sideproject' %}
<img data-src="{{ site.iconic_url }}svg/smart/beaker.svg" src="{{ site.iconic_url }}png/black/standard/beaker-md.png" class="iconic iconic-md" alt="beaker">
{% endif %}
</span>{{ experience.title }}</h2>
<p class="meta">
<span class="hidden-desk">
{% if experience.category == 'job' %}
<img data-src="{{ site.iconic_url }}svg/smart/briefcase.svg" src="{{ site.iconic_url }}png/black/standard/briefcase-md.png" class="iconic iconic-sm" alt="briefcase">
{% elsif experience.category == 'studies' %}
<img data-src="{{ site.iconic_url }}svg/smart/book.svg" src="{{ site.iconic_url }}png/black/standard/book-md.png" class="iconic iconic-sm" alt="book">
{% elsif experience.category == 'sideproject' %}
<img data-src="{{ site.iconic_url }}svg/smart/beaker.svg" src="{{ site.iconic_url }}png/black/standard/beaker-md.png" class="iconic iconic-sm" alt="beaker">
{% endif %}
</span>
{{ experience.startDate | date: "%B %Y" }} -
{% if experience.endDate %}
{{ experience.endDate | date: "%B %Y" }}
{% elsif experience.endDate == null %}
Now
{% endif %}
</p>
</header>
{% if experience.description %}
<p>
{{ experience.description }}
</p>
{% endif %}
</article>
{% endfor %}
</div>