-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.qmd
More file actions
85 lines (80 loc) · 2.34 KB
/
cv.qmd
File metadata and controls
85 lines (80 loc) · 2.34 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
---
title: CV et al.
description-meta: "Roussel's Academic Portfolio - CV, Research & Teaching Statements"
date: 2026-02-15
published-title: Last updated
engine: knitr
documents:
cv: "assets/pdfs/CV.pdf"
research: "assets/pdfs/Research.pdf"
teaching: "assets/pdfs/Teaching.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 et al.</li>
</ol>
</nav>
```
```{css echo=FALSE}
.embed-container {
position: relative;
padding-bottom: 129%;
height: 0;
overflow: hidden;
max-width: 100%;
margin-bottom: 2rem;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.document-section {
margin-bottom: 3rem;
}
.document-section h2 {
margin-top: 2rem;
margin-bottom: 1rem;
}
```
```{=html}
<div class="document-section">
<h2><i class="fas fa-file-alt"></i> Curriculum Vitae</h2>
<p class="text-center">
<a class="btn btn-primary btn-lg cv-download" href="`r rmarkdown::metadata$documents$cv`" target="_blank">
<i class="fa-solid fa-file-arrow-down"></i> Download CV
</a>
</p>
<div class="embed-container">
<iframe src="`r rmarkdown::metadata$documents$cv`" style="border: 0.5px"></iframe>
</div>
</div>
<div class="document-section">
<h2><i class="fas fa-flask"></i> Research Statement</h2>
<p class="text-center">
<a class="btn btn-primary btn-lg cv-download" href="`r rmarkdown::metadata$documents$research`" target="_blank">
<i class="fa-solid fa-file-arrow-down"></i> Download Research Statement
</a>
</p>
<div class="embed-container">
<iframe src="`r rmarkdown::metadata$documents$research`" style="border: 0.5px"></iframe>
</div>
</div>
<div class="document-section">
<h2><i class="fas fa-chalkboard-teacher"></i> Teaching Statement</h2>
<p class="text-center">
<a class="btn btn-primary btn-lg cv-download" href="`r rmarkdown::metadata$documents$teaching`" target="_blank">
<i class="fa-solid fa-file-arrow-down"></i> Download Teaching Statement
</a>
</p>
<div class="embed-container">
<iframe src="`r rmarkdown::metadata$documents$teaching`" style="border: 0.5px"></iframe>
</div>
</div>
```