index.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. <script src="assets/scripts/openpgp/openpgp.js"></script>
  18. <script src="assets/scripts/openpgp/openpgp.worker.js"></script>
  19. <!-- un-comment this code to enable service worker
  20. <script>
  21. if ('serviceWorker' in navigator) {
  22. navigator.serviceWorker.register('service-worker.js')
  23. .then(() => console.log('service worker installed'))
  24. .catch(err => console.error('Error', err));
  25. }
  26. </script>-->
  27. <link href="build/main.css" rel="stylesheet">
  28. </head>
  29. <body>
  30. <!-- Ionic's root component and where the app will load -->
  31. <ion-app></ion-app>
  32. <!-- The polyfills js is generated during the build process -->
  33. <script src="build/polyfills.js"></script>
  34. <!-- The vendor js is generated during the build process
  35. It contains all of the dependencies in node_modules -->
  36. <script src="build/vendor.js"></script>
  37. <!-- The main bundle js is generated during the build process -->
  38. <script src="build/main.js"></script>
  39. </body>
  40. </html>