-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (108 loc) · 4.61 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>SpotLight | Studentlife</title>
<link rel="stylesheet" href="www/css/topcoat-mobile-light.css">
<link rel="stylesheet" href="www/css/pageslider.css">
<link rel="stylesheet" href="www/css/app.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700&subset=latin,greek' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="app js-app">
<!--Hidden menu-->
<div class="app-menu">
<div class="topcoat-list">
<h3 class="topcoat-list__header"></h3>
<ul class="topcoat-list__container">
<li class="topcoat-list__item">
<a href="#" ontouchstart="return true;" class="menu-item">LATEST NEWS</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" class="categories-button">CATEGORIES</a>
</li>
<ul class="categories-menu">
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/uninews" class="menu-item">UNI NEWS</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/uni101" class="menu-item">UNI 101</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/uni-sports" class="menu-item">UNI SPORTS</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/funstuff" class="menu-item">FUN STUFF</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/view-point" class="menu-item">VIEW POINT</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/uni-support" class="menu-item">UNI SUPPORT</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/uni-radio" class="menu-item">UNI RADIO</a>
</li>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#category/win" class="menu-item">WIN</a>
</li>
</ul>
<li class="topcoat-list__item">
<a ontouchstart="return true;" href="#contactus" class="menu-item">CONTACT US</a>
</li>
</ul>
</div>
</div>
<div class="app-container js-app-container">
<div class="topcoat-navigation-bar">
<div class="topcoat-navigation-bar__item left quarter">
<div class="topcoat-icon-button--quiet js-menu-button" ontouchstart="return true;">
<span class="topcoat-icon topcoat-icon--menu-stack"></span>
</div>
</div>
<div class="topcoat-navigation-bar__item center half">
<h1 class="topcoat-navigation-bar__title"><img src="www/images/logo.png"></h1>
</div>
<div class="topcoat-navigation-bar__item right quarter">
<a class="topcoat-icon-button--quiet homebtn" ontouchstart="return true;" href="#">
<img src="www/images/home.png"/>
</a>
</div>
</div>
<div id="container" style="overflow: auto;"></div>
</div>
<!-- .app -->
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="www/js/jquery.js"></script>
<script type="text/javascript" src="www/js/fastclick.js"></script>
<script type="text/javascript" src="www/js/pageslider.js"></script>
<script type="text/javascript" src="www/js/menu.js"></script>
<script type="text/javascript" src="www/js/app.js"></script>
<script type="text/javascript" src="plugins/com.phonegap.plugin.statusbar/www/statusbar.js"></script>
<script type="text/javascript" src="plugins/com.adobe.plugins.GAPlugin/www/GAPlugin.js"></script>
<script type="text/javascript" >
document.addEventListener("deviceready", onDeviceReady, false);
var gaPlugin;
function onDeviceReady() {
console.log("device ready");
gaPlugin = window.plugins.gaPlugin;
gaPlugin.init(successHandler, errorHandler, "UA-48430697-1", 10);
setTimeout(function() {
navigator.splashscreen.hide();
console.log("splashscreen timeout");
}, 5000);
}
function successHandler()
{
console.log("init success");
}
function errorHandler()
{
console.log("init failed");
}
</script>
</body>
</html>