-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
146 lines (137 loc) · 5.27 KB
/
index.html
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BioE Postdoc Chalk Talk</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #FFFFFF;
}
header {
background-color: #8C1515; /* Stanford Cardinal */
color: white;
padding: 20px;
text-align: center;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
height: 200px; /* Adjust the size of the logos */
}
.header-title {
font-size: 2em;
flex-grow: 1;
text-align: center;
margin: 0;
}
.content {
padding: 20px;
}
.section {
margin-bottom: 20px;
}
.section-title {
font-size: 1.5em;
color: #8C1515; /* Stanford Cardinal */
margin-bottom: 10px;
}
.summary {
background-color: #f8f8f8;
padding: 15px;
border-left: 5px solid #8C1515;
margin-bottom: 20px;
}
.organizers {
display: flex;
flex-wrap: wrap;
}
.organizer {
flex: 1;
margin-right: 10px;
}
footer {
background-color: #2D2D2D; /* Dark grey */
color: white;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header>
<img src="block-s-1color.png" alt="Stanford Logo" class="logo">
<h1>BioE Postdoc Chalk Talk Series | BioE Beer, Boba, & Bites</h1>
<img src="bioe-postdoc-chalktalk.png" alt="Event Logo" class="logo">
<img src="beer-boba-bites.png" alt="Stanford Logo" class="logo">
</header>
<div class="content">
<div class="section">
<div class="section-title">Event Description</div>
<p>
The BioE Postdoc Chalk Talk series aims to build community for BioE postdocs and to practice and gain
familiarity with these important first few minutes of delivering an impactful chalk talk.
</p>
<p>
These events are followed by the BioE Beer, Boba, and Bites mixer to help give a place for BioE postdocs to gather and build connections.
</p>
</div>
<div class="section">
<div class="section-title">Future Events</div>
<ul>
<li><strong>TBD</strong>, January, 2024, 3:30 PM, Shriram 262 (Tentative)</li>
</ul>
</div>
<div class="section">
<div class="section-title">Past Events</div>
<ul>
<li>
<strong>Anthony Cesnik, Ph.D., Lundberg Lab</strong>, Tuesday, December 10, 2024, 3:30 PM, Spilker 143. Attended by 16 postdocs; Rogelio Hernandez-Lopez, Ph.D., represented the faculty.
<li>
<strong>Taihei Fujimore, Ph.D., Bintu Lab</strong>, Thursday, November 7, 2024, 3:30 PM, Shriram 368. Attended by 19 postdocs; Stanley Qi, Ph.D., represented the faculty.
</li>
<li>
<strong>Rahul Chajwa, Ph.D., Prakash Lab,</strong> Thursday, September 5, 2024, 3:30 PM, Shriram 262. Attended by 21 postdocs; Jan Liphardt, Ph.D., represented the faculty.
</li>
<ul>
<li>
Followed by BioE Beer, Boba, and Bites Mixer at 4:30 PM on the Shriram 2nd Floor Terrace.
</li>
</ul>
<li>
<strong>Dan O'Shea, Ph.D., Deiserroth Lab,</strong> Thursday, December 14, 2023, 3:30 PM, Shriram 262. Attended by 13 postdocs; Matthias Garten, Ph.D., represented the faculty.
</ul>
</div>
<div class="section">
<div class="section-title">Organizers</div>
<ul>
<li>2024 - Present: <strong>Noorsher Ahmed, Ph.D. & William Leineweber, Ph.D.,</strong> Postdoctoral Scholars, Lundberg Lab</li>
<li>2023 - 2024: <strong>Anthony Cesnik, Ph.D.,</strong> Postdoctoral Scholar, Lundberg Lab</li>
</ul>
</div>
<div class="section">
<div class="section-title">Support</div>
<ul>
<li>Light snacks and refreshments courtesy of BioE JEDI committee.</li>
<li>Beer, Boba, and Bites courtesy of BioE JEDI committee.</li>
</ul>
</div>
<footer>
<p>© 2024 Stanford University. All rights reserved.</p>
<p>Last Updated: <span id="last-updated"></span></p>
</footer>
<script>
// Get the current date
const lastUpdated = new Date();
// Format the date to a readable format (e.g., September 23, 2024)
const options = { year: 'numeric', month: 'long', day: 'numeric' };
const formattedDate = lastUpdated.toLocaleDateString(undefined, options);
// Insert the formatted date into the footer
document.getElementById('last-updated').textContent = formattedDate;
</script>
</body>
</html>