blob: 960bc309ceba9fc4b3d2f4b06be34233873e8131 (
plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<section class="Section__Container">
<h1 class="Resume__NameAndPrint Section__Title">
Joris Guyonvarch
<a class="Resume__Print" href="cv.pdf" target="_blank">
$partial("templates/icons/printer.svg")$
</a>
</h1>
<a class="Resume__GitLabLink IconLink__Link" href="https://gitlab.com/guyonvarch">
<span class="IconLink__Icon">
$partial("templates/icons/gitlab.svg")$
</span>
guyonvarch
</a>
</section>
<section class="Section__Container">
<h1 class="Section__Title">Expérience</h1>
<ul class="Section__Entries">
$for(experience)$
$body$
$endfor$
</ul>
</section>
<section class="Section__Container">
<h1 class="Section__Title">Études</h1>
<ul class="Section__Entries">
$for(education)$
$body$
$endfor$
</ul>
</section>
<section class="Section__Container">
<h1 class="Section__Title">Compétences</h1>
<ul class="Section__Entries">
$for(skills)$
$body$
$endfor$
</ul>
</section>
<section class="Section__Container">
<h1 class="Section__Title">Intérêts</h1>
<ul class="Section__Entries">
$for(hobbies)$
$body$
$endfor$
</ul>
</section>
|