You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<ion-view view-title="Users">
|
|
<ion-content>
|
|
<ion-refresher
|
|
pulling-text="Pull to refresh..."
|
|
on-refresh="doRefresh()">
|
|
</ion-refresher>
|
|
<div class="list">
|
|
<a ng-repeat="user in users | orderBy: 'date'" class="item item-avatar" href="#/app/users/{{user.username}}">
|
|
<img ng-src="img/avatars/{{user.avatar}}.png">
|
|
<h2>{{user.username}}</h2>
|
|
<p>
|
|
{{user.description}}
|
|
</p>
|
|
</a>
|
|
</div>
|
|
</ion-content>
|
|
</ion-view>
|