-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (94 loc) · 4.46 KB
/
Copy pathindex.html
File metadata and controls
100 lines (94 loc) · 4.46 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.0" />
<title>Computational Biology at Berkeley</title>
<meta name="description" content="A UC Berkeley student organization connecting biology, computer science, and healthcare through education, research, projects, and community." />
<meta name="author" content="Computational Biology at Berkeley" />
<meta name="theme-color" content="#FFFFFF" />
<link rel="canonical" href="https://compbioatberkeley.github.io/" />
<link rel="describedby" href="/llms.txt" type="text/markdown" />
<link
rel="icon"
type="image/svg+xml"
href="%BASE_URL%favicon-light.svg?v=icon-only-2"
data-theme-favicon
data-light-href="%BASE_URL%favicon-light.svg?v=icon-only-2"
data-dark-href="%BASE_URL%favicon-dark.svg?v=icon-only-2"
/>
<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=Carlito:wght@400;700&display=swap" rel="stylesheet" />
<script>
(function () {
try {
var savedTheme;
try {
savedTheme = localStorage.getItem("compbio-theme");
} catch (storageError) {
savedTheme = null;
}
var supportsColorPreference = typeof window.matchMedia === "function";
var prefersDark = supportsColorPreference
&& window.matchMedia("(prefers-color-scheme: dark)").matches;
var prefersLight = supportsColorPreference
&& window.matchMedia("(prefers-color-scheme: light)").matches;
var hasColorPreference = prefersDark || prefersLight;
var localHour = new Date().getHours();
var timeTheme = localHour >= 7 && localHour < 19 ? "light" : "dark";
var automaticTheme = hasColorPreference
? (prefersDark ? "dark" : "light")
: timeTheme;
var theme = savedTheme === "light" || savedTheme === "dark"
? savedTheme
: automaticTheme;
document.documentElement.dataset.defaultTheme = hasColorPreference
? "system"
: timeTheme;
document.documentElement.classList.toggle("dark", theme === "dark");
document.documentElement.style.colorScheme = theme;
document
.querySelector('meta[name="theme-color"]')
?.setAttribute("content", theme === "dark" ? "#0A1220" : "#FFFFFF");
var favicon = document.querySelector("link[data-theme-favicon]");
if (favicon) {
favicon.href = theme === "dark"
? favicon.dataset.darkHref
: favicon.dataset.lightHref;
}
} catch (error) {
document.documentElement.classList.remove("dark");
}
})();
</script>
<!-- Restore direct browser navigation for the noindex concept-review routes. -->
<script>
(function () {
try {
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
} catch (error) {
// Continue at the site root if session storage is unavailable.
}
})();
</script>
<meta property="og:title" content="Computational Biology at Berkeley" />
<meta property="og:description" content="A UC Berkeley student organization connecting biology, computer science, and healthcare through education, research, projects, and community." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://compbioatberkeley.github.io/" />
<meta property="og:image" content="https://compbioatberkeley.github.io/comp-bio-logo-berkeley.svg" />
<meta property="og:image:type" content="image/svg+xml" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Computational Biology at Berkeley" />
<meta name="twitter:description" content="A UC Berkeley student organization connecting biology, computer science, and healthcare through education, research, projects, and community." />
<meta name="twitter:image" content="https://compbioatberkeley.github.io/comp-bio-logo-berkeley.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>