mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 22:17:40 +08:00
12 lines
291 B
HTML
12 lines
291 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>
|
|
</ion-content>
|