-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalks.html
More file actions
113 lines (106 loc) · 4.88 KB
/
talks.html
File metadata and controls
113 lines (106 loc) · 4.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Talks | Katherine Ormerod</title>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="navigation">
<a href="index.html" class="site-title">Katherine Ormerod</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="talks.html" class="active">Talks</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button class="menu-toggle">☰</button>
</nav>
</header>
<main>
<section id="conferences" class="conferences-section">
<div class="content-wrapper">
<h2>Conferences</h2>
<div class="conferences-grid">
<div class="conference-card">
<h3>Conference Talks</h3>
<div class="conference-talk">
<h4>Charting Cosmic Dawn in Copenhagen</h4>
<p class="info">Copenhagen, Denmark<br>April 2026<br>Contributed talk</p>
</div>
<div class="conference-talk">
<h4>From Dust till Dawn</h4>
<p class="info">Leiden, Netherlands<br>February 2026<br>Invited speaker</p>
</div>
<div class="conference-talk">
<h4>First Galaxies</h4>
<p class="info">Oxford, UK<br>April 2025<br>Contributed talk</p>
</div>
<div class="conference-talk">
<h4>Dust and gas throughout cosmic time</h4>
<p class="info">Hiroshima, Japan<br>December 2024<br>Contributed talk (remote)</p>
</div>
<div class="conference-talk">
<h4>National Astronomy Meeting</h4>
<p class="info">Hull, UK<br>July 2024<br>Contributed talk</p>
</div>
<div class="conference-talk">
<h4>Extreme galaxies in their extreme environments at extremely early epochs</h4>
<p class="info">Reykjavik, Iceland<br>April 2024<br>Contributed talk</p>
</div>
<div class="conference-talk">
<h4>Raising the veil on star formation near and far</h4>
<p class="info">Cambridge, UK<br>April 2024<br>Contributed talk</p>
</div>
<div class="conference-talk">
<h4>National Astronomy Meeting</h4>
<p class="info">Cardiff, UK<br>July 2023<br>Contributed talk</p>
</div>
</div>
</div>
</div>
</section>
<section id="outreach" class="outreach-section">
<div class="content-wrapper">
<h2>Outreach</h2>
<div class="outreach-grid">
<div class="outreach-card">
<div class="outreach">
<h4>Careers talks</h4>
<p class="info">Delivered talks to high schools and sixth forms about my research and career path.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>© 2026 Katherine Ormerod</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const menuToggle = document.querySelector('.menu-toggle');
const navMenu = document.querySelector('.navigation ul');
menuToggle.addEventListener('click', function() {
navMenu.classList.toggle('show');
});
document.addEventListener('click', function(event) {
const isClickInsideNav = event.target.closest('.navigation');
if (!isClickInsideNav && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
window.addEventListener('resize', function() {
if (window.innerWidth > 768 && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
});
</script>
</body>
</html>