-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 2.46 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-150904197-1"></script> -->
<script>
//window.dataLayer = window.dataLayer || [];
//function gtag(){dataLayer.push(arguments);}
//gtag('js', new Date());
//gtag('config', 'UA-150904197-1');
</script>
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no" />
<meta charset="utf8" />
<title>The Collegiate Alliance</title>
<script>
window.__AXIOS_HOOKS_CACHE__ = ["__AXIOS__"];
window.__REDUX_STATE_CACHE__ = ["__REDUX__"];
</script>
<link rel="shortcut icon" type="image/x-icon" href="src/assets/facc_logo_favicon.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel="stylesheet" href="static/css/flag-icon.min.css" />
<link rel="stylesheet" href="static/css/index.css" />
<style>
#loading {
position: fixed;
top: 0;
left: 0;
height: 100vh; /* Fallback */
height: calc(var(--vh, 1vh) * 100);
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background: #F5F6F7;
z-index: 3000;
}
.spinner {
display: inline-block;
border: 4px solid transparent;
border-radius: 50%;
border-top-color: #009cd7;
animation: spin 1s linear infinite;
-webkit-animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
</style>
<script defer src="build/client/index.js" onload="loading.style.display = 'none'"></script>
</head>
<body>
<div id="loading">
<svg class="spinner" width="55px" height="55px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>
</div>
<div id="app">{{{body}}}</div>
</body>
</html>