29 lines
598 B
HTML
29 lines
598 B
HTML
|
<!--
|
||
|
Generated template for the StreamPage page.
|
||
|
|
||
|
See http://ionicframework.com/docs/components/#navigation for more info on
|
||
|
Ionic pages and navigation.
|
||
|
-->
|
||
|
<ion-header>
|
||
|
|
||
|
<ion-navbar>
|
||
|
<ion-title>stream</ion-title>
|
||
|
</ion-navbar>
|
||
|
|
||
|
</ion-header>
|
||
|
|
||
|
|
||
|
<ion-content>
|
||
|
|
||
|
<ion-list>
|
||
|
<ion-item *ngFor="let post of posts" (click)="goParkDetails(park)" text-wrap>
|
||
|
<ion-avatar item-start>
|
||
|
<img src="{{post.user.content.avatar_image.link}}">
|
||
|
</ion-avatar>
|
||
|
<h2>{{post.user.username}}</h2>
|
||
|
<p>{{post.content.text}}</p>
|
||
|
</ion-item>
|
||
|
</ion-list>
|
||
|
|
||
|
</ion-content>
|