28 lines
665 B
HTML
28 lines
665 B
HTML
<ion-header [translucent]="true">
|
|
<ion-toolbar color="primary">
|
|
<ion-buttons slot="start">
|
|
<ion-menu-button></ion-menu-button>
|
|
</ion-buttons>
|
|
<ion-title>Tips</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content [fullscreen]="true">
|
|
<ion-header collapse="condense">
|
|
<ion-toolbar>
|
|
<ion-title size="large">Tips</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-card *ngFor="let tip of resData">
|
|
<ion-card-header>
|
|
<ion-card-title>
|
|
{{ tip.judul }}
|
|
</ion-card-title>
|
|
</ion-card-header>
|
|
<ion-card-content>
|
|
<div [innerHTML]="tip.isi"></div>
|
|
</ion-card-content>
|
|
</ion-card>
|
|
</ion-content>
|