index.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
  6. <title></title>
  7. <link rel="manifest" href="manifest.json">
  8. <!-- un-comment this code to enable service worker
  9. <script>
  10. if ('serviceWorker' in navigator) {
  11. navigator.serviceWorker.register('service-worker.js')
  12. .then(() => console.log('service worker installed'))
  13. .catch(err => console.log('Error', err));
  14. }
  15. </script>-->
  16. <link href="lib/ionic/css/ionic.css" rel="stylesheet">
  17. <link href="css/style.css" rel="stylesheet">
  18. <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
  19. <link href="css/ionic.app.css" rel="stylesheet">
  20. -->
  21. <!-- ionic/angularjs js -->
  22. <script src="lib/ionic/js/ionic.bundle.js"></script>
  23. <!-- cordova script (this will be a 404 during development) -->
  24. <script src="cordova.js"></script>
  25. <!-- your app's js -->
  26. <script src="js/app.js"></script>
  27. <script src="js/controllers.js"></script>
  28. <script src="js/services.js"></script>
  29. </head>
  30. <body ng-app="starter">
  31. <!--
  32. The nav bar that will be updated as we navigate between views.
  33. -->
  34. <ion-nav-bar class="bar-stable">
  35. <ion-nav-back-button>
  36. </ion-nav-back-button>
  37. </ion-nav-bar>
  38. <!--
  39. The views will be rendered in the <ion-nav-view> directive below
  40. Templates are in the /templates folder (but you could also
  41. have templates inline in this html file if you'd like).
  42. -->
  43. <ion-nav-view></ion-nav-view>
  44. </body>
  45. </html>