-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
56 lines (52 loc) · 2.09 KB
/
cv.html
File metadata and controls
56 lines (52 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV</title>
<link rel="stylesheet" href="style.css">
<style>
.last-updated {
position: fixed;
bottom: 10px;
right: 10px;
font-size: 0.9em;
color: gray;
}
</style>
</head>
<body>
<!-- Top menu (match your other pages’ structure/classes) -->
<nav class="topnav">
<a href="/index.html">HOME</a>
<a href="papers.html">PAPERS</a>
<a href="collaborators/collaborators.html">COLLABORATORS</a>
<a href="projects.html">PROJECTS</a>
<a href="cv.html" class="active">CV</a>
</nav>
<main class="container" style="max-width:1000px;margin:2rem auto;padding:0 1rem;">
<h1>Curriculum Vitae</h1>
<p>
<a href="assets/files/IB_CV.pdf" download>Download PDF</a>
•
<a href="assets/files/IB_CV.pdf" target="_blank" rel="noopener">Open in new tab</a>
</p>
<!-- Inline viewer -->
<object data="assets/files/IB_CV.pdf" type="application/pdf" width="100%" height="900">
<iframe src="assets/files/IB_CV.pdf" width="100%" height="900" loading="lazy"></iframe>
</object>
</main>
<p>
<a href="/index.html">Back to Homepage</a>
</p>
<div class="last-updated" id="last-updated">
Last updated on: <!-- Date will be inserted here by JavaScript -->
</div>
<script>
const lastUpdatedDiv = document.getElementById('last-updated');
const lastModified = new Date(document.lastModified);
const formattedDate = lastModified.toLocaleDateString('en-GB', { year: 'numeric', month: 'long', day: 'numeric' });
lastUpdatedDiv.textContent = `Last updated on: ${formattedDate}`;
</script>
</body>
</html>