This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ejs
67 lines (59 loc) · 1.93 KB
/
index.ejs
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<base href="/" />
<title>Serres Hackathon 2018</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>
html, body {
margin:0;
padding:0;
}
.loader-middle {
width:100vw;
height:100vh;
display: table;
}
.loader-middle div {
vertical-align: middle;
text-align: center;
display: table-cell;
}
.loader-middle div svg {
width: 75px;
height: 75px;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&subset=latin-ext" rel="stylesheet">
</head>
<body>
<div ng-strict-di ng-app="serres-hackathon-2018" ui-view class="generalWrap">
<div class="loader-middle">
<div>
</div>
</div>
</div>
<script>
window.serres = function(data, fnc) {
if(data)
if(window.serres.fnc) {
window.serres.fnc(data);
delete window.serres;
}
else
window.serres.data = data;
if(fnc)
if(window.serres.data) {
fnc(window.serres.data);
delete window.serres;
} else
window.serres.fnc = fnc;
};
</script>
<script>function mapsInit() { serres({}); }</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBrkGv8SU8FAnWVwGCfuE0YTS5_00YXuj0&libraries=places,geometry&callback=mapsInit&signed_in=true"
async defer onerror="mapsInit()"></script>
</body>
</html>