-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (84 loc) · 3.08 KB
/
Copy pathindex.html
File metadata and controls
86 lines (84 loc) · 3.08 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Brock Visual TimeTable helps Brock University students generate conflict-free course schedules, block off unavailable times, pin classes, and export calendars."
/>
<link rel="canonical" href="https://brocktimetable.com/" />
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#0f172a" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://brocktimetable.com/" />
<meta property="og:title" content="Brock Visual TimeTable" />
<meta
property="og:description"
content="Generate conflict-free Brock University timetables, compare schedule options, block unavailable times, pin classes, and export your calendar."
/>
<meta
property="og:image"
content="https://brocktimetable.com/og-image.png"
/>
<meta property="og:site_name" content="Brock Visual TimeTable" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Brock Visual TimeTable" />
<meta
name="twitter:description"
content="A visual timetable generator for Brock University students."
/>
<meta
name="twitter:image"
content="https://brocktimetable.com/og-image.png"
/>
<title>Brock Visual TimeTable</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Brock Visual TimeTable",
"url": "https://brocktimetable.com/",
"description": "A visual timetable generator for Brock University students to create conflict-free course schedules.",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Web",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "CAD"
}
}
</script>
<script>
// Set theme before React loads to prevent flash.
(function () {
const storageKey = "bt-theme-mode";
const storedMode = window.localStorage.getItem(storageKey);
const prefersDark = window.matchMedia(
"(prefers-color-scheme: dark)",
).matches;
const theme =
storedMode === "light" || storedMode === "dark"
? storedMode
: prefersDark
? "dark"
: "light";
document.documentElement.classList.toggle("dark", theme === "dark");
document.documentElement.style.colorScheme = theme;
})();
</script>
</head>
<body>
<noscript>
<h1>Brock Visual TimeTable</h1>
<p>
Generate conflict-free Brock University course schedules, block off
unavailable times, pin required classes, and export your timetable to a
calendar.
</p>
<p><a href="/guide">Read the Brock course registration guide</a>.</p>
</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>