generated from sneas/cv-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (143 loc) · 7.17 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ name }}. {{ title }}</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<base target="_blank">
</head>
<body>
<div class="container page">
<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
<div class="row">
<div class="col-print-6 col-12 col-md-4 d-flex justify-content-between flex-column">
<div>
<h1 class="mb-0">{{ name }}</h1>
<div class="fs-3">{{ title }}</div>
</div>
<div>
<p>
MLPI member<br>
<a href="https://mlpi.ing.unipi.it/"><img src="https://mlpi.ing.unipi.it/wp-content/uploads/2019/03/mlpi-logo.png" alt="MLPI member" class="img-fluid" style="max-height: 4em"></a>
</p>
<p>
<time datetime="{{ buildinfo.date }}" class="small">Last update: {{ updated }}</time>
</p>
<p>
<span class="screen"><a href="{{ pdfFileName }}"><i class="far fa-file-pdf"></i>Download PDF version</a></span>
<span class="print">Up-to-date version of CV is available at <a href="{{ baseUrl }}"
class="text-nowrap"><i
class="fab fa-github" aria-hidden="true"></i>{{ baseUrl }}</a></span>
</p>
</div>
</div>
<div class="col-4 col-md-3 col-lg-2 offset-lg-1 d-none d-md-block align-md-self-center text-center">
<img src="photo.jpg" class="rounded-circle img-fluid" alt="Personal photo">
</div>
<div class="col-print-6 col-12 col-md-5 offset-lg-1 col-lg-4">
<ul class="list-group list-group-flush">
{{#each links}}
<li class="list-group-item d-flex justify-content-between align-items-start">
<span class="text-nowrap">{{ @key }}</span>
<span class="text-nowrap">{{{ this }}}</span>
</li>
{{/each}}
</ul>
</div>
</div>
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
Ph.D. student enrolled in the Information Engineering course at the University of Pisa (Italy). Specialised in advanced deep learning architectures, computer vision and explainable artificial intelligence. I am enthusiastic about open source and open data principles, actively participate in the Stack Overflow community and contribute to GitHub projects. Full stack development skills on main deployment platforms developed during experiences in the enterprise environment.
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
<h2 class="mb-4">Education</h2>
{{#each education}}
<div class="row d-block d-md-flex{{#unless @last}} mb-5{{/unless}}">
<div class="col-md-2 pt-1">
{{ period }}<br>
{{#if location}}
<i class="fa-solid fa-location-dot" style="color: #373737;"></i> {{ location }}
{{/if}}
</div>
<div class="col-md-10">
<h3 class="fs-4 fw-normal">{{ title }}</h3>
<div>{{{markdown contents }}}</div>
</div>
</div>
{{/each}}
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
<h3 class="h2 screen mb-4">Skills</h3>
<div class="row align-items-center">
{{#each skills}}
<div class="col-print-1 col-3 col-md-2 col-lg-1 text-right">
<small>{{ this.[0] }}</small>
</div>
<div class="col-print-1 col-3 col-md-2 col-lg-1">
<div class="skills">
<div class="skills-bar" style="width: {{ this.[1] }}%"></div>
</div>
</div>
{{/each}}
</div>
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
<h2 class="mb-4">Professional Experience</h2>
{{#each positions}}
<div class="row d-block d-md-flex{{#unless @last}} mb-5{{/unless}}">
<div class="col-md-2 pt-1">
{{ period }}<br>
{{#if location}}
<i class="fa-solid fa-location-dot" style="color: #373737;"></i> {{ location }}
{{/if}}
</div>
<div class="col-md-10">
<h3 class="fs-4 fw-normal">{{ title }}</h3>
<div>{{{markdown contents }}}</div>
<p>
{{#each skills }}
<span class="badge text-body border border-1">{{ this }}</span>
{{/each}}
</p>
</div>
</div>
{{/each}}
</div>
<div class="border-bottom border-2 border-print-0 border-dark mb-5 pb-5 pb-print-0 mb-print-1">
<h2 class="mb-4">Publications</h2>
{{#each publication}}
<div class="row d-block d-md-flex{{#unless @last}} mb-5{{/unless}}">
<div class="col-md-2 pt-1">
{{ type }} <br> {{ year}}
</div>
<div class="col-md-10">
<div>{{{markdown contents }}}</div>
<p>
{{#if code}}
<a href="{{ code }}" class="text-nowrap"><i class="fab fa-github" title="source code" style="color: #373737; font-size: 1.5em;" aria-hidden="true"></i></a>
{{/if}}
{{#if data}}
<a href="{{ data }}" class="text-nowrap"><i class="fas fa-database" title="data" style="color: #373737; font-size: 1.5em;" aria-hidden="true"></i></a>
{{/if}}
{{#if full_text}}
<a href="{{ full_text }}" class="text-nowrap"><i class="fa-brands fa-readme" title="full text" style="color: #373737; font-size: 1.5em;" aria-hidden="true"></i></a>
{{/if}}
</p>
<p>
{{#each skills }}
<span class="badge text-body border border-1">{{ this }}</span>
{{/each}}
</p>
</div>
</div>
{{/each}}
</div>
</body>
</html>