-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·59 lines (54 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Splash Screen</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/framework.css">
<link rel="stylesheet" type="text/css" href="css/washington.css">
<script src="js/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ["Montserrat:400,700"]
}
});
</script>
<script type="text/javascript" src="js/modernizr.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="images/logoStandford32.ico">
<link rel="apple-touch-icon" href="images/logoStandford32.ico">
<link href="css/ionicons.min.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script src="js/geo.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places"></script>
</head>
<body>
<section class="w-section mobile-wrapper">
<div class="page-content" id="main-stack" data-scroll="0" data-splash="2000" data-redirect="login.html">
<div class="w-nav navbar"></div>
<div class="body padding">
<div class="splash-logo"></div>
<div class="bottom-section padding text-centered">
<h4>Welcome!</h4>
<p class="welcome-splash-text">Neighborhood
<br>Social</p>
<div class="separator-big"></div>
<div class="link-upper">LOADING...</div>
<div class="separator-bottom"></div>
</div>
</div>
</div>
<div class="page-content loading-mask" id="new-stack">
<div class="loading-icon">
<div class="navbar-button-icon icon ion-load-d"></div>
</div>
</div>
<div class="shadow-layer"></div>
</section>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/framework.js"></script>
<!--[if lte IE 9]><script src="js/placeholders.min.js"></script><![endif]-->
</body>
</html>