-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
595 lines (571 loc) · 21.3 KB
/
index.html
File metadata and controls
595 lines (571 loc) · 21.3 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>TBH</title>
<link rel="icon" href="tbh-logo.ico" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./css/bootstrap-5.0.2.css" />
<link rel="stylesheet" href="./css/custom-styles.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<!-- JS -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js"
integrity="sha512-2rNj2KJ+D8s1ceNasTIex6z4HWyOnEYLVC3FigGOmyQCZc2eBXKgOxQmo3oKLHyfcj53uz4QMsRCWNbLd32Q1g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/js/bootstrap.min.js"
integrity="sha512-a6ctI6w1kg3J4dSjknHj3aWLEbjitAXAjLDRUxo2wyYmDFRcz2RJuQr5M3Kt8O/TtUSp8n2rAyaXYy1sjoKmrQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- Countdown script -->
<script>
// Start and end of event (explicit dates)
const startDate = new Date("September 19, 2025 16:59:59");
const endDate = new Date("September 21, 2025 18:59:59");
const x = setInterval(function () {
const now = new Date();
if (now < startDate) {
// Countdown to start
var distance = startDate.getTime() - now.getTime();
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor(
(distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60),
);
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("demo").textContent =
days + "d " + hours + "h " + minutes + "m " + seconds + "s ";
} else if (now <= endDate) {
// During event window
document.getElementById("demo").textContent = "Hackathon is live!";
} else {
// After event
clearInterval(x);
document.getElementById("demo").textContent =
"See you again next year!";
}
}, 1000);
</script>
</head>
<body>
<div id="tbh-nav"></div>
<div class="jumbotron-landing">
<img
src="./img/tbh-logo-09.png"
class="img-landing img-fluid mx-5"
width="500"
alt="Logo"
/>
<h2 class="text-light mx-5">September 19 – 21, 2025</h2>
<h3 class="text-light mt-2" id="demo" style="min-height: 1.2em">
Loading countdown...
</h3>
<!-- Registration links -->
<!-- <div
class="d-flex flex-column flex-md-row justify-content-center mt-5 gap-3 text-center"
>
<a
href="https://docs.google.com/forms/d/1Qq0DjzbLaQk0UXh0sdySDql6wM7JuMJrVV4MnWVEbDI/edit"
target="_blank"
rel="noopener noreferrer"
class="btn tbh-btn-register"
>
Register Now
</a>
<a
href="https://docs.google.com/forms/d/13nfUbI6Otayy4iW8IZFiB7_GZ7q90EYYH0aE8LQmosM/edit"
target="_blank"
rel="noopener noreferrer"
class="btn tbh-btn-register"
>
Submit a Project Idea
</a>
</div>
<div
class="d-flex justify-content-center text-center text-warning"
style="margin-top: 2rem"
>
<h4>Registration deadline: August 14, 2025</h4>
</div> -->
</div>
<div class="container py-5 m-auto d-block">
<div
class="row hackbio-readme justify-content-between align-items-center"
>
<div class="col-12 col-lg-6 pb-4 pb-lg-0">
<img
src="img/group-2025.jpg"
class="img-fluid"
alt="Group photo of 2025 hackathon participants, organizers, and judges"
/>
<p class="event-details">
<strong>Date:</strong> Friday September 19th to Sunday September
21st, 2025<br />
<strong>Location:</strong> Terrence Donnelly Centre for Cellular
& Biomolecular Research<br />
<strong>Address:</strong> 160 College St, Toronto, Canada
</p>
</div>
<div class="col-12 col-lg-5 pt-2 pt-lg-0 text-start">
<p class="hackathon-summary">
The Toronto Bioinformatics Hackathon is a student-led computational
biology hackathon, bringing together early career bioinformaticians,
molecular biologists, statisticians, and computer scientists from
Toronto's Discovery District to complete interdisciplinary projects
that emphasize computational and entrepreneurial thinking.
</p>
<p class="hackathon-summary">
In partnership with the Terrence Donnelly Centre and the Temerty
Faculty of Medicine's Computational Biology in Molecular Genetics
program, our participants will collaborate to propose innovative
solutions to key challenges in computational biology with
commercialization potential.
</p>
<div class="col-12 text-center">
<a
href="./docs/TBH_Program_2025.pdf"
class="btn tbh-btn mt-4 py-3"
role="button"
target="_blank"
>View our 2025 program</a
>
</div>
</div>
</div>
</div>
<div class="container-fluid jumbotron-donnelley py-5 window">
<div class="row justify-content-center">
<div class="col-12" align="center">
<h2 align="center">Read about us in the Donnelly Centre News!</h2>
<a
href="https://thedonnellycentre.utoronto.ca/news/donnelly-centre-students-organize-torontos-first-bioinformatics-hackathon"
class="btn tbh-btn-outline mt-5 py-3"
role="button"
target="_blank"
>Visit article</a
>
</div>
</div>
</div>
<div class="footer-judges py-5">
<div class="container">
<div class="row">
<div class="col-12 d-flex flex-column align-items-center">
<h1 class="mb-3">Meet our 2025 judges</h1>
<p>
They bring deep expertise and perspective to spotlight our
participants' best ideas.
</p>
</div>
</div>
<div class="row justify-content-center judges-row px-2 px-md-0">
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/A_Goeva_blue.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Dr. Aleksandrina<br />Goeva</h5>
<p>Assistant Professor of Computational Biology</p>
<p>University of Toronto</p>
</div>
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/J_Wintersinger_blue.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Dr. Jeff <br />Wintersinger</h5>
<p>Principal Scientist</p>
<p>Deep Genomics</p>
</div>
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/R_McDougall_blue_new.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Dr. Robin <br />McDougall</h5>
<p>Executive Director, Translational Modeling</p>
<p>Recursion</p>
</div>
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/O_Whitley_blue.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Dr. Owen<br />Whitley</h5>
<p>Computational Biologist</p>
<p>Roche Canada</p>
</div>
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/J_Fine_blue.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Jacob<br />Fine</h5>
<p>PhD Student in Computational Biology</p>
<p>University of Toronto</p>
</div>
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/E_Afanasiev_blue.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Elia<br />Afanasiev</h5>
<p>Computational Research Technician</p>
<p>Goeva Lab, University of Toronto</p>
</div>
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/E_HashimotoRoth_blue.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Emily<br />Hashimoto-Roth</h5>
<p>PhD Student in Computational Biology</p>
<p>University of Toronto</p>
</div>
<div
class="col-lg-4 col-6 px-0 mt-5 d-flex flex-column align-items-center text-center"
>
<img
src="./img/headshots/judges/I_Horecka_blue.png"
class="img-fluid judge-photo"
alt=""
/>
<h5 class="mt-3">Ira<br />Horecka</h5>
<p>PhD Student in Computational Biology</p>
<p>University of Toronto</p>
</div>
</div>
</div>
</div>
<div class="py-5 d-flex flex-column justify-content-center">
<div class="container d-block">
<div class="row">
<div class="col-12 mb-5">
<h1 class="text-center">Powered by</h1>
</div>
</div>
<!-- First row (Present sponsors) -->
<div class="row justify-content-evenly align-items-center text-center">
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/dg.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="Deep Genomics"
/>
<img
src="./img/logos/present/dg.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="Deep Genomics (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/uoft_ccbr.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="Donnelly Centre"
/>
<img
src="./img/logos/present/uoft_ccbr.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="Donnelly Centre (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/aws.png"
class="img-fluid mx-auto d-block w-50 d-none d-sm-block"
alt="AWS"
/>
<img
src="./img/logos/present/aws.png"
class="img-fluid mx-auto d-block w-50 d-block d-sm-none"
alt="AWS (mobile)"
/>
</div>
</div>
<!-- Second row (Present sponsors) -->
<div class="row justify-content-evenly align-items-center text-center">
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/csb.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="CSB"
/>
<img
src="./img/logos/present/csb.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="CSB (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/uoft_mogen.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="Molecular Genetics UofT"
/>
<img
src="./img/logos/present/uoft_mogen.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="Molecular Genetics UofT (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/uoft_bch.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="U of T BCH"
/>
<img
src="./img/logos/present/uoft_bch.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="U of T BCH (mobile)"
/>
</div>
</div>
<!-- Third row (Present sponsors) -->
<div class="row justify-content-evenly align-items-center text-center">
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/uoft_gbb.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="Genome Biology and Bioinformatics (U of T)"
/>
<img
src="./img/logos/present/uoft_gbb.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="Genome Biology and Bioinformatics (U of T) (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/cagef.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="CAGEF"
/>
<img
src="./img/logos/present/cagef.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="CAGEF (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-3 py-1 my-3">
<img
src="./img/logos/present/cbh.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="CBH"
/>
<img
src="./img/logos/present/cbh.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="CBH (mobile)"
/>
</div>
</div>
<!-- Fourth row (Present sponsors) -->
<div class="row justify-content-evenly align-items-center text-center">
<div class="col-12 col-sm-6 col-lg-4 my-3">
<img
src="./img/logos/present/og.png"
class="img-fluid mx-auto d-block w-75 d-none d-sm-block"
alt="Ontario Genomics"
/>
<img
src="./img/logos/present/og.png"
class="img-fluid mx-auto d-block w-50 d-block d-sm-none"
alt="Ontario Genomics (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-4 my-3">
<img
src="./img/logos/present/mc.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="MC"
/>
<img
src="./img/logos/present/mc.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="MC (mobile)"
/>
</div>
</div>
</div>
</div>
<!-- Past sponsors -->
<div class="py-5 d-flex flex-column justify-content-center">
<div class="container d-block">
<div class="row">
<div class="col-12 mb-5 mt-md-4">
<h1 class="text-center">Previously supported by</h1>
</div>
</div>
<!-- Row 1 (Past sponsors) -->
<div class="row justify-content-evenly align-items-center text-center">
<div class="col-12 col-sm-6 col-lg-5 my-3">
<img
src="./img/logos/past/da-horizontal.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="Digital Research Alliance"
/>
<img
src="./img/logos/past/da-horizontal.png"
class="img-fluid mx-auto d-block w-100 d-block d-sm-none"
alt="Digital Research Alliance (mobile)"
/>
</div>
</div>
<!-- Row 2 (Past sponsors) -->
<div class="row justify-content-evenly align-items-center text-center">
<div class="col-12 col-sm-6 col-lg-4 my-3">
<img
src="./img/logos/past/wolfram.png"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="Wolfram"
/>
<img
src="./img/logos/past/wolfram.png"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="Wolfram (mobile)"
/>
</div>
<div class="col-12 col-sm-6 col-lg-3 my-3">
<img
src="./img/logos/past/bioinformatics.jpg"
class="img-fluid mx-auto d-block w-100 d-none d-sm-block"
alt="bioinformatics.ca"
/>
<img
src="./img/logos/past/bioinformatics.jpg"
class="img-fluid mx-auto d-block w-75 d-block d-sm-none"
alt="bioinformatics.ca (mobile)"
/>
</div>
</div>
</div>
</div>
<!-- Global thank-you -->
<div class="container">
<div class="row">
<div class="col-12 my-4">
<h4 class="sponsor-thankyou text-center mx-auto">
A huge thank you to our sponsors and supporters – we couldn't do
this without you!
</h4>
</div>
</div>
</div>
<div id="sponsor-cta"></div>
<!-- Registration and Project Idea Section -->
<!-- <div class="footer-project py-5">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="mb-4">Ready to join or pitch an idea?</h2>
<p class="text-center mx-auto">
Whether you're looking to participate in the hackathon or have a
compelling project idea, we want to hear from you! Submit your
registration or propose your project using the links below.
</p>
<div
class="d-flex flex-column flex-md-row justify-content-center mt-5 gap-3 text-center"
>
<a
href="https://docs.google.com/forms/d/1Qq0DjzbLaQk0UXh0sdySDql6wM7JuMJrVV4MnWVEbDI/edit"
target="_blank"
rel="noopener noreferrer"
class="btn tbh-btn-register"
>
Register Now
</a>
<a
href="https://docs.google.com/forms/d/13nfUbI6Otayy4iW8IZFiB7_GZ7q90EYYH0aE8LQmosM/edit"
target="_blank"
rel="noopener noreferrer"
class="btn tbh-btn-register"
>
Submit a Project Idea
</a>
</div>
</div>
</div>
</div>
</div> -->
<div id="footer"></div>
<!-- Load navigation menu -->
<script>
var xhttp_nav = new XMLHttpRequest();
xhttp_nav.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
// Insert the navbar into the DOM
document.getElementById("tbh-nav").innerHTML = xhttp_nav.responseText;
// Now that the navbar is loaded, add the scroll event listener
const navColour = document.querySelector("#tbh-nav");
window.addEventListener("scroll", () => {
if (window.scrollY >= 56) {
// Add the solid background (bg-* class) and navbar-scrolled class
navColour.classList.add("navbar-scrolled", "bg-blue");
} else {
// Remove the background and navbar-scrolled class to make it transparent
navColour.classList.remove("navbar-scrolled", "bg-blue");
}
});
}
};
xhttp_nav.open("GET", "./nav.html", true);
xhttp_nav.send();
</script>
<!-- Load sponsorship CTA -->
<script>
var xhttp_sponsor = new XMLHttpRequest();
xhttp_sponsor.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("sponsor-cta").innerHTML =
xhttp_sponsor.responseText;
}
};
xhttp_sponsor.open("GET", "./sponsor-cta.html", true);
xhttp_sponsor.send();
</script>
<!-- Load footer -->
<script>
var xhttp_footer = new XMLHttpRequest();
xhttp_footer.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("footer").innerHTML =
xhttp_footer.responseText;
}
};
xhttp_footer.open("GET", "./footer.html", true);
xhttp_footer.send();
</script>
</body>
</html>