-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
84 lines (74 loc) · 3.09 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
<!doctype html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Bring Me Home</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, target-densityDpi=medium-dpi,user-scalable=no" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<script src="phonegap.js"></script>
<!--<script src="cordova.js"></script>-->
<!-- build:css css/main.css -->
<link rel="stylesheet" href="bower_components/ionic/release/css/ionic.css">
<link rel="stylesheet" href="styles/toastr.css">
<link rel="stylesheet" href="styles/pie.css">
<link rel="stylesheet" href="styles/default.css">
<!-- endbuild -->
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<!--[if lt IE 9]>
<script src="bower_components/es5-shim/es5-shim.js"></script>
<script src="bower_components/json3/lib/json3.min.js"></script>
<![endif]-->
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<!-- build:js js/plugins.js -->
<script src="bower_components/linqjs/linq.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/ionic/release/js/ionic.bundle.js"></script>
<script src="bower_components/moment/moment.js"></script>
<script src="bower_components/toastr/toastr.js"></script>
<script src="externals/pie/pieMenu.js"></script>
<script src="externals/angularjs-localizationservice/src/localize.js"></script>
<!-- build:js js/app.js -->
<script src="app/injections.js"></script>
<script src="app/app.js"></script>
<!-- inject-models -->
<!-- end-inject-models -->
<!-- inject -->
<script src="app/constants.js"></script>
<script src="app/routes.js"></script>
<script src="app/interfaces/Framework.js"></script>
<script src="app/interfaces/Routes.js"></script>
<script src="app/services/Event.js"></script>
<script src="app/run-services/IonicConfig.js"></script>
<!-- end-inject -->
<script src="app/registrations.js"></script>
<script src="app/run-services/AngularInit.js"></script>
<!-- endbuild -->
<ion-nav-view animation="slide-left-right"></ion-nav-view>
<div class="bar bar-footer bar-home">
<div class="row">
<a href="http://www.2bit.ch" target="_blank">
<img class="logo" style="left: 70%" src="./images/Logo.png" />
</a>
</div>
</div>
<script>
new AngularInit();
angular.bootstrap(document, [$injections.Constants.AppName]);
</script>
</body>
</html>