mirror of
https://github.com/arnaucube/commonroutesApp.git
synced 2026-02-07 03:26:44 +01:00
18 lines
518 B
HTML
18 lines
518 B
HTML
<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>
|