31 lines
786 B
HTML
31 lines
786 B
HTML
<ion-view view-title="Pokemon">
|
|
|
|
|
|
<ion-nav-buttons side="secondary">
|
|
<button class="button button-icon icon ion-ios-search-strong" ng-click="showFilterBar()">
|
|
</button>
|
|
</ion-nav-buttons>
|
|
|
|
<ion-content direction="y" scrollbar-y="false">
|
|
|
|
<ion-refresher pulling-icon="ion-arrow-down-b" on-refresh="refreshItems()">
|
|
</ion-refresher>
|
|
|
|
<ion-list>
|
|
<ion-item collection-repeat="item in items" ng-model="items">
|
|
<a class="item item-thumbnail-left" href="#">
|
|
<img src="img/720.png">
|
|
<h2>{{item.POKEMONNAME}}</h2>
|
|
<p>Nine Inch Nails</p>
|
|
</a>
|
|
</ion-item>
|
|
</ion-list>
|
|
|
|
<div ng-if="items !== undefined && !items.length" class="no-results">
|
|
<p>No Results</p>
|
|
</div>
|
|
|
|
</ion-content>
|
|
|
|
</ion-view>
|