|
@@ -0,0 +1,49 @@
|
|
1
|
+<!DOCTYPE html>
|
|
2
|
+<html lang="en" dir="ltr">
|
|
3
|
+<head>
|
|
4
|
+ <meta charset="UTF-8">
|
|
5
|
+ <title>Ionic App</title>
|
|
6
|
+ <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
7
|
+ <meta name="format-detection" content="telephone=no">
|
|
8
|
+ <meta name="msapplication-tap-highlight" content="no">
|
|
9
|
+
|
|
10
|
+ <link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
|
|
11
|
+ <link rel="manifest" href="manifest.json">
|
|
12
|
+ <meta name="theme-color" content="#4e8ef7">
|
|
13
|
+
|
|
14
|
+ <!-- add to homescreen for ios -->
|
|
15
|
+ <meta name="apple-mobile-web-app-capable" content="yes">
|
|
16
|
+ <meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
17
|
+
|
|
18
|
+ <!-- cordova.js required for cordova apps (remove if not needed) -->
|
|
19
|
+ <script src="cordova.js"></script>
|
|
20
|
+
|
|
21
|
+ <!-- un-comment this code to enable service worker
|
|
22
|
+ <script>
|
|
23
|
+ if ('serviceWorker' in navigator) {
|
|
24
|
+ navigator.serviceWorker.register('service-worker.js')
|
|
25
|
+ .then(() => console.log('service worker installed'))
|
|
26
|
+ .catch(err => console.error('Error', err));
|
|
27
|
+ }
|
|
28
|
+ </script>-->
|
|
29
|
+
|
|
30
|
+ <link href="build/main.css" rel="stylesheet">
|
|
31
|
+
|
|
32
|
+</head>
|
|
33
|
+<body>
|
|
34
|
+
|
|
35
|
+ <!-- Ionic's root component and where the app will load -->
|
|
36
|
+ <ion-app></ion-app>
|
|
37
|
+
|
|
38
|
+ <!-- The polyfills js is generated during the build process -->
|
|
39
|
+ <script src="build/polyfills.js"></script>
|
|
40
|
+
|
|
41
|
+ <!-- The vendor js is generated during the build process
|
|
42
|
+ It contains all of the dependencies in node_modules -->
|
|
43
|
+ <script src="build/vendor.js"></script>
|
|
44
|
+
|
|
45
|
+ <!-- The main bundle js is generated during the build process -->
|
|
46
|
+ <script src="build/main.js"></script>
|
|
47
|
+
|
|
48
|
+</body>
|
|
49
|
+</html>
|