index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <!-- cordova script (this will be a 404 during development) -->
  15. <!--<script src="cordova.js"></script>-->
  16. <!-- your app's js -->
  17. <script src="js/app.js"></script>
  18. <script src="js/controllers.js"></script>
  19. <script src="js/services.js"></script>
  20. <script src="js/directives/OniBarDirective.js"></script>
  21. </head>
  22. <body ng-app="starter">
  23. <!--
  24. The nav bar that will be updated as we navigate between views.
  25. -->
  26. <!--<ion-nav-bar class="bar-stable">-->
  27. <!--<ion-nav-back-button>-->
  28. <!--</ion-nav-back-button>-->
  29. <!--</ion-nav-bar>-->
  30. <!--<ion-header-bar class="bar bar-header" align-title="center">-->
  31. <!--<div class="buttons">-->
  32. <!--<button class="button button-icon icon ion-navicon-round" >-->
  33. <!--</button>-->
  34. <!--</div>-->
  35. <!--<div class="title">-->
  36. <!--<ion-tabs class="tabs-striped" >-->
  37. <!--<div ng-repeat="item in onibaritems">-->
  38. <!--<ion-tab title="{{item.title}}" href="{{item.href}}"></ion-tab>-->
  39. <!--</div>-->
  40. <!--</ion-tabs>-->
  41. <!--</div>-->
  42. <!--<div class="buttons">-->
  43. <!--<button class="button button-icon icon ion-ios-search" >-->
  44. <!--</button>-->
  45. <!--</div>-->
  46. <!--</ion-header-bar>-->
  47. <!--<oni-bar items="{{onibaritems}}"></oni-bar>-->
  48. <!--
  49. The views will be rendered in the <ion-nav-view> directive below
  50. Templates are in the /templates folder (but you could also
  51. have templates inline in this html file if you'd like).
  52. -->
  53. <ion-nav-view></ion-nav-view>
  54. </body>
  55. </html>