-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0, height=device-height"/>
<title></title>
<link href="css/main.css" rel="stylesheet">
</head>
<body ng-app="app">
<div ng-controller="HomeController" ng-cloak>
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title" i18n="index.title"></h1>
</ion-header-bar>
<ion-content class="has-header"></ion-content>
</ion-pane>
</div>
<script type="text/javascript">
window.name = "NG_DEFER_BOOTSTRAP!";
if (navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|IEMobile)/) || location.search.indexOf('debug')>=0) {
document.write('<script src="phonegap.js"><\/script>');
document.write('<script src="js/main.min.js" ><\/script>');
} else {
document.write('<script src="bower_components/requirejs/require.js" data-main="js/config.js"><\/script>');
}
</script>
</body>
</html>