mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-24 23:01:57 +08:00
15 lines
363 B
HTML
15 lines
363 B
HTML
<ion-navbar *navbar id="p2toolbar"><ion-title>Feed</ion-title></ion-navbar>
|
|
|
|
<ion-content>
|
|
|
|
<div class="card" *ng-for="#post of posts" (^click)="postClicked($event, post)">
|
|
<div class="card-content">
|
|
{{post.text}}
|
|
</div>
|
|
<img src="{{post.image}}">
|
|
<div class="card-footer">
|
|
Posted {{post.day}} ago
|
|
</div>
|
|
</div>
|
|
</ion-content>
|