-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (30 loc) · 972 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<meta charset="utf-8">
<title>Devnexus 2022 Schedule</title>
<meta name="theme-color" content="#519d55"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles/inline.css">
</head>
<body>
<div id="app" ></div>
<script src="dist/bundle2.js" async></script>
<noscript>
We're sorry, the DevNexus schedule site requires Javascript.
</noscript>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw_2020.js').then(function(registration) {
// Registration was successful
registration.update();
}).catch(function(err) {
// registration failed :(
console.log('ServiceWorker registration failed: ', err);
});
}
</script>
</body>
</html>