Skip to content

Commit 9e3a022

Browse files
committed
hide unannounced speakers
1 parent 037bc6c commit 9e3a022

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

src/components/timetable/Tuesday.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,9 @@ const breaks = [
123123
duration={35}
124124
room={main}
125125
/>
126+
<!-- talk="shane" -->
126127
<Item
127-
talk="shane"
128+
title="TBA"
128129
color="yellow"
129130
track={1}
130131
time="12:15"
@@ -182,8 +183,9 @@ const breaks = [
182183
duration={35}
183184
room={main}
184185
/>
186+
<!-- talk="caroline" -->
185187
<Item
186-
talk="caroline"
188+
title="TBA"
187189
color="yellow"
188190
track={1}
189191
time="14:45"

src/components/timetable/Wednesday.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,9 @@ const breaks = [
105105
duration={35}
106106
room={main}
107107
/>
108+
<!-- talk="martin" -->
108109
<Item
109-
talk="martin"
110+
title="TBA"
110111
color="yellow"
111112
track={1}
112113
time="12:15"

src/pages/speakers.astro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ const talks = await Astro.glob('./talks/*.md');
1212
<div class="space-y-6">
1313
<PersonList>
1414
{
15-
talks.map((talk: any) => {
15+
talks.filter((talk: any) => {
16+
return typeof talk.frontmatter.draft === "undefined" || !talk.frontmatter.draft
17+
}).map((talk: any) => {
1618
return talk.frontmatter.speakers.map((speaker: any) => (
1719
<Person
1820
tile

src/pages/talks/caroline.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ talkTitle: "Healthy Data, Rusty Code: Epidemiology Meets Modern Systems Programm
66
talkLevel: "All"
77
talkTags: ["epidemiology", "scientific programming", "rust", "py03"]
88
talkDuration: 30 # 15 or 30 min
9+
draft: true
10+
911
speakers: [{
1012
name: "Caroline Morton",
1113
image: "caroline.jpeg",

src/pages/talks/martin.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ talkTitle: "Gigabytes per second of DNA: using Rust for matching genomic motifs"
77
talkLevel: "Intermediate"
88
talkTags: ["bioinformatics", "genomics", "simd", "science"]
99
talkDuration: 15 # 15 or 30 min
10+
draft: true
1011

1112
speakers: [{
1213
name: "Martin Larralde",

src/pages/talks/shane.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ talkTitle: "Beyond ICU4X 2.0: ZeroVec, Diplomat, Yoke, and Unicode's Contributio
77
talkLevel: ""
88
talkTags: ["i18n", "embedded systems", "crates"]
99
talkDuration: 15 # 15 or 30 min
10-
10+
draft: true
1111

1212
speakers: [{
1313
name: "Shane F. Carr",

0 commit comments

Comments
 (0)