-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.html
More file actions
100 lines (90 loc) · 4.12 KB
/
slides.html
File metadata and controls
100 lines (90 loc) · 4.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Austin Ellis | Slides</title>
<meta name="description" content="Slides page for Austin Ellis. Conference and talk decks will be added here.">
<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=Fraunces:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="site-shell">
<header class="site-header reveal" style="--delay: 0ms;">
<a class="brand" href="index.html">Austin Ellis</a>
<div class="header-links" aria-label="Quick header links">
<a href="mailto:austin.ellis.386@my.csun.edu">Email</a>
<a href="AustinEllisCV.pdf" target="_blank" rel="noopener">CV</a>
</div>
</header>
<main class="page">
<nav class="tabs reveal" style="--delay: 30ms;" aria-label="Portfolio tabs">
<a class="tab" href="index.html">About</a>
<a class="tab" href="updates.html">Recent News / Updates</a>
<a class="tab" href="publications.html">Publications</a>
<a class="tab" href="posters.html">Posters</a>
<a class="tab is-active" href="slides.html" aria-current="page">Slides</a>
<a class="tab" href="blog.html">Blog</a>
<a class="tab" href="notes.html">Notes</a>
</nav>
<section class="panel reveal" style="--delay: 80ms;" aria-labelledby="slides-title">
<h1 class="panel-title" id="slides-title">Slides</h1>
<p class="panel-subtitle">Selected seminar and conference decks with embedded first-slide previews.</p>
<div class="slides-grid">
<article class="slide-card reveal" style="--delay: 130ms;">
<h2>Sigma Xi 2025 Presentation</h2>
<p class="slide-description">
Research presentation on symmetry-aware electron-localization prediction and machine-learning-guided
materials discovery workflows.
</p>
<div class="slide-preview">
<iframe
title="Sigma Xi 2025 Presentation preview"
loading="lazy"
src="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2Faustinellis.org%2Fslides%2FSeitz-invariant_ELF.pptx"
></iframe>
</div>
<a class="button-link" href="slides/Seitz-invariant_ELF.pptx" target="_blank" rel="noopener">
Open PowerPoint
</a>
</article>
<article class="slide-card reveal" style="--delay: 180ms;">
<h2>Department Literature Review Seminar 2025</h2>
<p class="slide-description">
Literature review seminar covering recent computational and machine-learning advances relevant to
electronic-structure modeling in materials chemistry.
</p>
<div class="slide-preview">
<iframe
title="Department Literature Review Seminar 2025 preview"
loading="lazy"
src="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2Faustinellis.org%2Fslides%2FLiterature_Seminar_Austin2025_final.pptx"
></iframe>
</div>
<a
class="button-link"
href="slides/Literature_Seminar_Austin2025_final.pptx"
target="_blank"
rel="noopener"
>
Open PowerPoint
</a>
</article>
</div>
</section>
</main>
<footer class="site-footer">
<p>© <span id="year"></span> Austin Ellis</p>
<a href="blog.html">Next tab: Blog</a>
</footer>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>