index.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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="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. <!-- cordova.js required for cordova apps -->
  13. <script src="cordova.js"></script>
  14. <!-- un-comment this code to enable service worker
  15. <script>
  16. if ('serviceWorker' in navigator) {
  17. navigator.serviceWorker.register('service-worker.js')
  18. .then(() => console.log('service worker installed'))
  19. .catch(err => console.log('Error', err));
  20. }
  21. </script>-->
  22. <link href="build/main.css" rel="stylesheet">
  23. </head>
  24. <body>
  25. <!-- Ionic's root component and where the app will load -->
  26. <ion-app></ion-app>
  27. <!-- The polyfills js is generated during the build process -->
  28. <script src="build/polyfills.js"></script>
  29. <!-- The bundle js is generated during the build process -->
  30. <script src="build/main.js"></script>
  31. </body>
  32. </html>