-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (99 loc) · 4.34 KB
/
index.html
File metadata and controls
110 lines (99 loc) · 4.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paul Ducarme</title> <link rel="stylesheet" href="style.css"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="/images/favicon_io/favicon.ico">
</head>
<body class="homepage">
<!-- <header>
<button id="theme-toggle" aria-label="Toggle dark and light theme">
Toggle Theme
</button>
</header> -->
<nav class="navigation">
<h1>
<a class="sitename" href="/">paul ducarme</a>
</h1>
<ul class="navigation-list">
<!-- <li>-->
<!-- <a href="research.html">research</a>-->
<!-- <span class="nav-sidenote">research interests, highlights</span>-->
<!-- </li>-->
<li>
<a href="portfolio.html">portfolio</a>
<span class="nav-sidenote">publications, talks, outreach</span>
</li>
<!-- <li>-->
<!-- <a href="resume.html">resume</a>-->
<!-- <span class="nav-sidenote">experience, education, skills</span>-->
<!-- </li>-->
<li>
<a href="projects.html">projects</a>
<span class="nav-sidenote">creations, tutorials, resources</span>
</li>
<li>
<a href="gallery.html">gallery</a>
<span class="nav-sidenote">visuals, other photographs</span>
</li>
<li>
<a href="about.html">about</a>
<span class="nav-sidenote">more about me, where to find me</span>
</li>
</ul>
</nav>
<main>
<h3>recent highlights</h3>
<div class="video-pair">
<figure class="video-figure">
<div class="video-hover-wrapper">
<a href="https://doi.org/10.1016/j.eml.2026.102476">
<video class="inline-video" autoplay loop muted playsinline>
<source src="images/movies/metagripper.webm" type="video/webm">
</video>
<div class="video-overlay">read EML article</div>
</div>
</a>
<figcaption class="video-caption">
framework for highly nonlinear simulations
<a href="https://doi.org/10.1016/j.eml.2026.102476">published in EML</a>
</figcaption>
</figure>
<figure class="video-figure">
<div class="video-hover-wrapper">
<a href="https://doi.org/10.1073/pnas.2423301122">
<video class="inline-video" autoplay loop muted playsinline>
<source src="images/movies/nice_avalanche.webm" type="video/webm">
</video>
<div class="video-overlay">read PNAS article</div>
</div>
</a>
<figcaption class="video-caption">
research on countersnapping instabilities
<a href="https://doi.org/10.1073/pnas.2423301122">published in PNAS</a>
</figcaption>
</figure>
<figure class="video-figure">
<a href="https://www.youtube.com/watch?v=-QTkPfq7w1A" target="_blank" rel="noopener noreferrer">
<div class="video-hover-wrapper">
<img
src="images/thumbnails/large/veritasium.jpg"
alt="veritasium video thumbnail countersnapping braess"
class="inline-video">
<div class="video-overlay">watch on YouTube</div>
</div>
</a>
<figcaption class="video-caption"><a href="https://www.youtube.com/watch?v=-QTkPfq7w1A">featured</a> on <em>Veritasium</em> (18M+ subscribers). 10M+ views.</figcaption>
</figure>
</div>
</main>
<footer>
<p>Contact me via <a href="mailto:paulducarme@hotmail.com">email</a> — paulducarme@hotmail.com, or via
<a href="https://www.linkedin.com/in/paul-ducarme/" target="_blank" rel="noopener noreferrer">linkedin</a>.
</p>
</footer>
</body>
</html>