-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (27 loc) · 1015 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=1024">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>Unmatched Roster</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<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=Lato:wght@300;400&display=swap" rel="stylesheet">
<link rel='stylesheet' href='style.css?v=1' type='text/css' />
<script>
let protocol = document.location.protocol;
if ((protocol !== 'http:' && protocol !== 'https:') || protocol === 'file:') {
document.write('Serve me through http or https...');
}
</script>
<script type="module">
import start from './index.js?v=1';
start();
</script>
</head>
<body>
</body>
</html>