index.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
  10. <link rel="manifest" href="manifest.json">
  11. <meta name="theme-color" content="#4e8ef7">
  12. <!-- add to homescreen for ios -->
  13. <meta name="apple-mobile-web-app-capable" content="yes">
  14. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  15. <!-- cordova.js required for cordova apps (remove if not needed) -->
  16. <script src="cordova.js"></script>
  17. <!-- un-comment this code to enable service worker
  18. <script>
  19. if ('serviceWorker' in navigator) {
  20. navigator.serviceWorker.register('service-worker.js')
  21. .then(() => console.log('service worker installed'))
  22. .catch(err => console.error('Error', err));
  23. }
  24. </script>-->
  25. <link href="build/main.css" rel="stylesheet">
  26. </head>
  27. <body>
  28. <!-- Ionic's root component and where the app will load -->
  29. <ion-app></ion-app>
  30. <!-- The polyfills js is generated during the build process -->
  31. <script src="build/polyfills.js"></script>
  32. <!-- The vendor js is generated during the build process
  33. It contains all of the dependencies in node_modules -->
  34. <script src="build/vendor.js"></script>
  35. <!-- The main bundle js is generated during the build process -->
  36. <script src="build/main.js"></script>
  37. </body>
  38. </html>