index.html 979 B

123456789101112131415161718192021222324252627282930313233
  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 href="lib/ionic/css/ionic.css" rel="stylesheet">
  8. <link href="css/style.css" rel="stylesheet">
  9. <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
  10. <link href="css/ionic.app.css" rel="stylesheet">
  11. -->
  12. <!-- ionic/angularjs js -->
  13. <script src="lib/ionic/js/ionic.bundle.js"></script>
  14. <script src="lib/ionic/js/angular/angular-resource.min.js"></script>
  15. <!-- cordova script (this will be a 404 during development) -->
  16. <script src="cordova.js"></script>
  17. <!-- your app's js -->
  18. <script src="js/app.js"></script>
  19. <script src="js/controllers.js"></script>
  20. <script src="js/services.js"></script>
  21. </head>
  22. <body ng-app="starter">
  23. <ion-nav-view></ion-nav-view>
  24. </body>
  25. </html>