-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (109 loc) · 4.86 KB
/
index.html
File metadata and controls
118 lines (109 loc) · 4.86 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
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO -->
<meta name="description" content="Online resume and portfolio of James L. Elia, scientist and tech enthusiast.">
<meta name="keywords" content="resume, portfolio, James Elia, Yale, scientist, PhD, biology">
<meta name="author" content="James L. Elia">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://www.jlelia.net/">
<!-- Site Icons -->
<link rel="icon" href="/images/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="James L. Elia">
<meta property="og:description" content="Online resume and portfolio of James L. Elia, scientist and tech enthusiast.">
<meta property="og:image" content="https://www.jlelia.net/images/headshot.webp">
<meta property="og:url" content="https://www.jlelia.net/">
<meta property="og:type" content="website">
<!-- PWA / Mobile Enhancements -->
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#ffffff">
<!-- Performance Optimizations -->
<link rel="preload" as="image" href="/images/headshot.webp" imagesrcset="/images/headshot.webp 1x" fetchpriority="high">
<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=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles.css">
<title>Home - James L. Elia</title>
</head>
<body>
<header>
<div class="header-inner container">
<div class="brand-group">
<img src="/images/headshot.webp" alt="James L. Elia headshot" class="headshot" width="75" height="75">
<h1>James L. Elia</h1>
</div>
<nav aria-label="Primary">
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/publications">Publications</a>
<a href="/projects">Projects</a>
<a href="/blog">Blog</a>
<a href="https://jael-labs.com" target="_blank" rel="noopener noreferrer">Jael Labs</a>
</nav>
</div>
</header>
<main>
<section class="intro">
<h2>Welcome!</h2>
<p>I am a PhD candidate at Yale in the Pathology and Molecular Medicine program. The three objectives of this site are:</p>
<ul>
<li>To serve as an online resume and curriculum vitae</li>
<li>To share my thoughts and projects with fellow STEM enthusiasts</li>
<li>To learn more about web development (this site is built by hand and self-hosted!)</li>
</ul>
</section>
<section class="cards">
<a class="card" href="/about">
<h3>About</h3>
<p>Learn more about my background, training, and aspirations.</p>
</a>
<a class="card" href="/publications">
<h3>Publications</h3>
<p>Browse my scientific publications and read about the findings.</p>
</a>
<a class="card" href="/projects">
<h3>Projects</h3>
<p>Explore my programming, tech, and other DIY projects.</p>
</a>
<a class="card" href="/blog">
<h3>Blog</h3>
<p>Read my thoughts on various topics in science, tech, and beyond.</p>
</a>
</section>
<section class="qr-section" aria-labelledby="qr-title">
<div class="container">
<h2 id="qr-title" class="section-title">Off-Site Pages</h2>
<p class="section-subtitle">Scan or click the QR codes to visit my pages on other sites.</p>
<div class="qr-grid">
<figure class="qr-card">
<a class="qr-link" href="https://github.com/jlelia" target="_blank" rel="noopener" aria-label="Open GitHub">
<img src="/images/github.png" alt="QR code to GitHub" loading="lazy">
</a>
<figcaption>GitHub</figcaption>
</figure>
<figure class="qr-card">
<a class="qr-link" href="https://linkedin.com/in/jlelia" target="_blank" rel="noopener" aria-label="Open LinkedIn">
<img src="/images/linkedin.png" alt="QR code to LinkedIn" loading="lazy">
</a>
<figcaption>LinkedIn</figcaption>
</figure>
<figure class="qr-card">
<a class="qr-link" href="https://scholar.google.com/citations?user=LPnegdoAAAAJ" target="_blank" rel="noopener" aria-label="Open Google Scholar">
<img src="/images/google_scholar.png" alt="QR code to Google Scholar" loading="lazy">
</a>
<figcaption>Google Scholar</figcaption>
</figure>
</div>
</div>
</section>
</main>
<footer>
<p>© 2026 James L. Elia</p>
</footer>
</body>
</html>