-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
61 lines (60 loc) · 1.67 KB
/
resume.html
File metadata and controls
61 lines (60 loc) · 1.67 KB
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
---
layout: default
hero_title: "Resume"
hero_subtitle: "Student at University of Kent"
---
<div class="box">
<a class="button is-primary" style="width: 100%;" href="{{ site.baseurl }}/curriculum_vitae.pdf">
Download resume
</a>
</div>
<!--
<section class="section">
<div class="container">
<h1 class="title">skills</h1>
<!--content enables bullet points but increases col proportions (1/3 -> 1/2) -\->
<div class="columns is-multiline content">
{% for group in site.data.resume.skills %}
<ul
class="column is-4-tablet is-one-fifth-desktop is-2-widescreen is-1-fullhd"
>
<strong>{{group.type}}</strong>
{% for skill in group.skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>
</section>
<section class="section">
<div class="container">
<h1 class="title">work experience</h1>
{% for job in site.data.resume.experience %}
<p style="word-wrap: break-word; width: 55%">
<strong>{{job.title}}</strong><br />
<i>{{job.company}}, {{job.date}}</i><br />
{{job.responsiblities}} <br />
</p>
{% endfor %}
</div>
</section>
<section class="section">
<div class="container">
<h1 class="title">education</h1>
<div class="columns is-multiline content">
{% for group in site.data.resume.education %}
<ul
class="column is-one-third-tablet is-one-fifth-desktop is-2-widescreen is-1-fullhd"
>
<strong>{{group.type}}</strong>
{% for grade in group.grades %}
<li>{{ grade }}</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>
</section>
-->