rename resume to resumé
This commit is contained in:
11
resumé/_templates/education.vto
Normal file
11
resumé/_templates/education.vto
Normal file
@@ -0,0 +1,11 @@
|
||||
{{ for ed of section.items }}
|
||||
<div class="card">
|
||||
<h3>{{ ed.school }}</h3>
|
||||
|
||||
<p>{{ ed.date.begin }} - {{ ed.date.end }}</p>
|
||||
|
||||
<hr>
|
||||
|
||||
{{ ed.description |> djot }}
|
||||
</div>
|
||||
{{ /for }}
|
||||
43
resumé/_templates/experiences.vto
Normal file
43
resumé/_templates/experiences.vto
Normal file
@@ -0,0 +1,43 @@
|
||||
{{ for exp of section.items }}
|
||||
<div class="card">
|
||||
<h3><a href="{{ exp.organisation.website }}">{{ exp.organisation.name }}</a> - {{ exp.position }}</h3>
|
||||
|
||||
<p>{{ exp.date.begin }} - {{ exp.date.end }}, {{ exp.city }}</p>
|
||||
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
<strong>{{ words_.context }}:</strong>
|
||||
{{ exp.description.context }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>{{ words_.tasks }}:</strong>
|
||||
<ul>
|
||||
{{ for task of exp.description.tasks }}
|
||||
<li>{{ task }}</li>
|
||||
{{ /for }}
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>{{ words_.comment }}:</strong>
|
||||
{{ exp.description.comment }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>{{ words_.themes }}:</strong>
|
||||
<ul>
|
||||
{{ for theme of exp.themes }}
|
||||
<li>{{ theme }}</li>
|
||||
{{ /for }}
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<center>
|
||||
{{ for el of exp.stack }}
|
||||
<span class="pl-badge">{{ el }}</span>
|
||||
{{ /for }}
|
||||
</center>
|
||||
</div>
|
||||
{{ /for }}
|
||||
18
resumé/_templates/hobbies.vto
Normal file
18
resumé/_templates/hobbies.vto
Normal file
@@ -0,0 +1,18 @@
|
||||
<div>
|
||||
{{ for item of section.items }}
|
||||
<div>
|
||||
{{ if "items" in item }}
|
||||
<strong>{{ item.name }}:</strong>
|
||||
<ul>
|
||||
{{ for i of item.items }}
|
||||
<li>{{ i |> djot }}</li>
|
||||
{{ /for }}
|
||||
</ul>
|
||||
{{ else }}
|
||||
<p>
|
||||
<strong>{{ item.name }}:</strong> {{ item.content }}
|
||||
</p>
|
||||
{{ /if }}
|
||||
</div>
|
||||
{{ /for }}
|
||||
</div>
|
||||
5
resumé/_templates/languages.vto
Normal file
5
resumé/_templates/languages.vto
Normal file
@@ -0,0 +1,5 @@
|
||||
<ul>
|
||||
{{ for item of section.items }}
|
||||
<li>{{ item.flag }} {{ item.name }} {{ item?.level }}</li>
|
||||
{{ /for }}
|
||||
</ul>
|
||||
1
resumé/_templates/skills.vto
Normal file
1
resumé/_templates/skills.vto
Normal file
@@ -0,0 +1 @@
|
||||
{{ section.content |> djot }}
|
||||
Reference in New Issue
Block a user