123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
- <title></title>
- <link href="lib/ionic/css/ionic.css" rel="stylesheet">
- <link href="css/style.css" rel="stylesheet">
- <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
- <link href="css/ionic.app.css" rel="stylesheet">
- -->
- <!-- ionic/angularjs js -->
- <script src="lib/ionic/js/ionic.bundle.js"></script>
- <!-- cordova script (this will be a 404 during development) -->
- <!--<script src="cordova.js"></script>-->
- <!-- your app's js -->
- <script src="js/app.js"></script>
- <script src="js/controllers.js"></script>
- <script src="js/services.js"></script>
- <script src="js/directives/OniBarDirective.js"></script>
- </head>
- <body ng-app="starter">
- <!--
- The nav bar that will be updated as we navigate between views.
- -->
- <!--<ion-nav-bar class="bar-stable">-->
- <!--<ion-nav-back-button>-->
- <!--</ion-nav-back-button>-->
- <!--</ion-nav-bar>-->
- <!--<ion-header-bar class="bar bar-header" align-title="center">-->
- <!--<div class="buttons">-->
- <!--<button class="button button-icon icon ion-navicon-round" >-->
- <!--</button>-->
- <!--</div>-->
- <!--<div class="title">-->
- <!--<ion-tabs class="tabs-striped" >-->
- <!--<div ng-repeat="item in onibaritems">-->
- <!--<ion-tab title="{{item.title}}" href="{{item.href}}"></ion-tab>-->
- <!--</div>-->
- <!--</ion-tabs>-->
- <!--</div>-->
- <!--<div class="buttons">-->
- <!--<button class="button button-icon icon ion-ios-search" >-->
- <!--</button>-->
- <!--</div>-->
- <!--</ion-header-bar>-->
- <!--<oni-bar items="{{onibaritems}}"></oni-bar>-->
- <!--
- The views will be rendered in the <ion-nav-view> directive below
- Templates are in the /templates folder (but you could also
- have templates inline in this html file if you'd like).
- -->
- <ion-nav-view></ion-nav-view>
- </body>
- </html>
|