ionic-cordova-gulp-seed
Version:
Ionic & Cordova & Gulp seed with organized code, tests, bower support and some other stuff. Originated from ionic-angular-cordova-seed.
5 lines • 4.56 kB
JavaScript
angular.module("ionicstarter.templates", []).run(["$templateCache", function($templateCache) {$templateCache.put("templates/about.html","\n<html>\n <body>\n <!--This template loads for the \'tab.about\' state (app.js)\n -->\n <ion-view view-title=\"About Ionic\">\n <ion-content has-header=\"true\" has-tabs=\"true\" padding=\"true\"><img src=\"img/ionic.png\" class=\"ionic-logo\"/>\n <p>\n This is a sample seed project for the Ionic Framework. Please cut it up and make it your own.\n Check out the<a href=\"http://ionicframework.com/docs/\" target=\"_blank\">docs</a>for more info.\n </p>\n <p>Questions? Hit up the<a href=\"http://forum.ionicframework.com/\" target=\"_blank\">forum</a>.</p>\n <p>Find a bug? Create an<a href=\"https://github.com/driftyco/ionic/issues?state=open\" target=\"_blank\">issue</a>.</p>\n <p>What to help improve Ionic?<a href=\"http://ionicframework.com/contribute/\" target=\"_blank\">Contribute</a>.</p>\n <p>Stay up-to-date with the Ionic<a href=\"http://ionicframework.com/subscribe/\" target=\"_blank\">newsletter</a>and<a href=\"https://twitter.com/Ionicframework\" target=\"_blank\">twitter</a>account.</p>\n <p>MIT Licensed. Happy coding.</p>\n </ion-content>\n </ion-view>\n </body>\n</html>");
$templateCache.put("templates/adopt.html","\n<html>\n <body>\n <!--This template loads for the \'tab.adopt\' state (app.js)\n -->\n <ion-view view-title=\"Adopt A Pet\">\n <ion-content has-header=\"true\" has-tabs=\"true\">\n <div class=\"list list-inset\">\n <label class=\"item item-input\"><span class=\"input-label\">Your name</span>\n <input type=\"text\"/>\n </label>\n <label class=\"item item-input\"><span class=\"input-label\">Your email</span>\n <input type=\"email\"/>\n </label>\n <ion-toggle>Subscribe To Newsletter</ion-toggle>\n <button class=\"button button-positive button-block\">Adopt</button>\n </div>\n </ion-content>\n </ion-view>\n </body>\n</html>");
$templateCache.put("templates/pet-detail.html","\n<html>\n <body>\n <!--\n This template loads for the \'tab.pet-detail\' state (app.js)\n \'pet\' is a $scope variable created in the PetCtrl controller (controllers.js)\n The PetCtrl pulls data from the Pets service (service.js)\n The Pets service returns an array of pet data\n -->\n <ion-view view-title=\"{{pet.title}}\">\n <ion-content has-header=\"true\" padding=\"true\">\n <p>{{ pet.description }}</p>\n <p><a href=\"#/tab/pets\" class=\"button button-small icon ion-arrow-left-b\"> All Pets</a></p>\n </ion-content>\n </ion-view>\n </body>\n</html>");
$templateCache.put("templates/pet-index.html","\n<html>\n <body>\n <!--\n This template gets placed in the Pet tab\'s <nav-view> directive.\n It was wired up in the app config (app.js)\n The \'pets\' data comes from its $scope within PetIndexCtrl (controller.js)\n -->\n <ion-view view-title=\"Pet Information\">\n <ion-content has-header=\"true\" has-tabs=\"true\">\n <ion-list>\n <ion-item ng-repeat=\"pet in pets\" type=\"item-text-wrap\" href=\"#/tab/pet/{{pet.id}}\">\n <h3>{{pet.title}}</h3>\n <p>{{pet.description}}</p>\n </ion-item>\n </ion-list>\n </ion-content>\n </ion-view>\n </body>\n</html>");
$templateCache.put("templates/tabs.html","\n<html>\n <body>\n <!--\n Create tabs with an icon and label, using the tabs-positive style. \n Each tab\'s child <nav-view> directive will have its own \n navigation history that also transitions its views in and out.\n -->\n <ion-tabs class=\"tabs-icon-top tabs-default tabs-positive\">\n <!-- Pets Tab-->\n <ion-tab title=\"Pets\" icon=\"icon ion-home\" href=\"#/tab/pets\">\n <ion-nav-view name=\"pets-tab\"></ion-nav-view>\n </ion-tab>\n <!-- Adopt Tab-->\n <ion-tab title=\"Adopt\" icon=\"icon ion-heart\" href=\"#/tab/adopt\">\n <ion-nav-view name=\"adopt-tab\"></ion-nav-view>\n </ion-tab>\n <!-- About Tab-->\n <ion-tab title=\"About\" icon=\"icon ion-search\" href=\"#/tab/about\">\n <ion-nav-view name=\"about-tab\"></ion-nav-view>\n </ion-tab>\n </ion-tabs>\n </body>\n</html>");}]);