-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.qmd
54 lines (47 loc) · 1.09 KB
/
cv.qmd
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
---
title: Curriculum Vitae
description-meta: "Roussel's CV"
date: 2025-02-05
# title-block-banner: "#771C6D"
published-title: CV last updated
engine: knitr
cv:
pdf: "assets/pdfs/CV.pdf"
# pdf: "assets/pdfs/CV_Short.pdf"
---
```{=html}
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">CV</li>
</ol>
</nav>
```
```{css echo=FALSE}
.embed-container {
position: relative;
padding-bottom: 129%;
height: 0;
overflow: hidden;
max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
```
```{=html}
<p class="text-center">
<a class="btn btn-primary btn-lg cv-download" href="`r rmarkdown::metadata$cv$pdf`" target="_blank">
<i class="fa-solid fa-file-arrow-down"></i> Download current CV
</a>
</p>
<div class="embed-container">
<iframe src="`r rmarkdown::metadata$cv$pdf`" style="border: 0.5px"></iframe>
</div>
```