-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
111 lines (101 loc) Β· 3.39 KB
/
cv.html
File metadata and controls
111 lines (101 loc) Β· 3.39 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
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
---
layout: default
---
<nav>
<a href="index.html" class="subNavBtn active">Home</a>
<a href="stuff-i-do.html" class="subNavBtn">Math</a>
<a href="#contacts" class="subNavBtn">Contacts</a>
<a href="teaching.html" class="subNavBtn">Teaching</a>
<a href="notes.html" class="subNavBtn">Notes</a>
</nav>
<div class="cv-container">
<h1>{{ site.data.cv.personal_info.name }}</h1>
<p class="tagline">{{ site.data.cv.personal_info.tagline }}</p>
<!--
<p class="contact">
π§ <a href="mailto:{{ site.data.cv.personal_info.email }}">{{ site.data.cv.personal_info.email }}</a> |
π <a href="{{ site.data.cv.personal_info.website }}" target="_blank">Website</a> |
π₯ <a href="{{ site.data.cv.personal_info.github }}" target="_blank">GitHub</a>
</p> -->
<h2>Current Position</h2>
{% for position in site.data.cv.current_position %}
<div class="cv-item">
<div class="cv-details">
<h3 class="cv-title">{{ position.title }}</h3>
<p class="cv-institution">{{ position.institution }}</p>
</div>
<div class="cv-dates">
<span class="cv-date-from">{{ position.from }}</span> β
<span class="cv-date-to">now</span>
</div>
</div>
{% endfor %}
<h2>Past Positions</h2>
{% for position in site.data.cv.past_positions %}
<div class="cv-item">
<div class="cv-details">
<h3 class="cv-title">{{ position.title }}</h3>
<p class="cv-institution">{{ position.institution }} | <b>{{ position.location }}</b></p>
</div>
<div class="cv-dates">
<span class="cv-date-from">{{ position.from }}</span> β
<span class="cv-date-to">{{ position.to }}</span>
</div>
</div>
{% endfor %}
<h2>Education</h2>
{% for item in site.data.cv.education %}
<div class="cv-item">
<div class="cv-details">
<h3 class="cv-title">{{ item.degree }}</h3>
<p class="cv-institution">{{ item.institution }} | <b>{{ item.location }}</b></p>
</div>
<div class="cv-dates">
<span class="cv-date-from">{{ item.from }}</span> β
<span class="cv-date-to">{{ item.to }}</span>
</div>
</div>
{% endfor %}
<!--
<h2>Teaching</h2>
{% for course in site.data.cv.teaching %}
<div class="cv-section">
<h3>{{ course.title }}</h3>
<p>{{ course.description }}</p>
<p><em>{{ course.location }} β {{ course.date }}</em></p>
</div>
{% endfor %} -->
<!-- <h2>Skills</h2>
<ul>
{% for skill in site.data.cv.skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul> -->
</div>
<footer>
<section id="contacts">
<div class="contact-container">
<div class="contact-map">
<iframe
src="https://maps.google.com/maps?q=Akadeemia+tee+21B,+Tallinn,+Estonia&hl=en&output=embed"
width="400"
height="250"
style="border:0;"
allowfullscreen=""
loading="lazy">
</iframe>
</div>
<div class="contact-info">
<h2>Contacts</h2>
<h5>Fosco G. Loregian</h5>
<ul>
<li><strong>π Address:</strong> Akadeemia tee 21B | 12618 Tallinn | Estonia πͺπͺ</li>
<li><strong>π§ Email:</strong> <a href="mailto:fosco.loregian@gmail.com">fosco.loregian@gmail.com</a></li>
<li><strong>π§ Email:</strong> <a href="mailto:folore@ttu.ee">folore@ttu.ee</a>
</li>
<li><strong>π» GitHub:</strong> <a href="https://github.com/tetrapharmakon" target="_blank">tetrapharmakon</a></li>
</ul>
</div>
</div>
</section>
</footer>