-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
39 lines (38 loc) · 1.63 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./icons/48.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>SlugSchedule</title>
<meta property="og:title" content="SlugSchedule">
<meta property="og:type" content="website">
<meta property="og:image" content="https://cabalex.github.io/slugschedule/icons/512.png" >
<meta property="og:description" content="SlugSchedule, for when the main course search is too slow!!">
<meta name="keywords" content="UCSC, class, enrollment, scheduler, schedule, slug, slugscheduler, slugschedule">
<link rel="manifest" href="manifest.json" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('serviceWorker.js').then(registration => {
console.log('SW registered: ', registration);
}).catch(registrationError => {
console.log('SW registration failed: ', registrationError);
});
});
}
</script>
<!-- We use Google Analytics to track site traffic. If you don't want to do this, that's okay! Just use an ad blocker. -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2LF5MRZP2R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2LF5MRZP2R');
</script>
</body>
</html>