-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurriculum_vitæ.html
40 lines (35 loc) · 1.37 KB
/
curriculum_vitæ.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Martin Cimiterra - {{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<div class="container">
<h1>Martin Cimiterra</h1>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('curriculum_vitæ') }}">Curriculum Vitæ</a></li>
<li><a href="{{ url_for('publications') }}" class="active">Publications</a></li>
<li><a href="{{ url_for('teaching') }}">Teaching</a></li>
<li><a href="{{ url_for('work_in_progress') }}">Work In Progress</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="curriculum_vitæ">
<h2>Curriculum Vitæ</h2>
<iframe src="{{ url_for('static', filename='pdfs/CV_2025_English_version_Cimiterra.pdf') }}" width="100%" height="600px"></iframe>
<p>If the PDF does not load, <a href="{{ url_for('static', filename='pdfs/publication.pdf') }}" target="_blank">click here to view it</a>.</p>
</section>
</main>
<footer>
<p>© 2025 Martin Cimiterra. All rights reserved.</p>
</footer>
</body>
</html>