Respoiurces page
This commit is contained in:
@@ -1,9 +1,27 @@
|
|||||||
<ion-header>
|
|
||||||
|
|
||||||
|
<ion-header mode="ios" class="ion-no-border">
|
||||||
<ion-toolbar>
|
<ion-toolbar>
|
||||||
<ion-title>resources</ion-title>
|
<ion-buttons slot="start" (click)="onBack()">
|
||||||
|
<ion-button>
|
||||||
|
<ion-icon name="arrow-back-outline"></ion-icon>
|
||||||
|
</ion-button>
|
||||||
|
</ion-buttons>
|
||||||
|
<ion-title>Playground</ion-title>
|
||||||
</ion-toolbar>
|
</ion-toolbar>
|
||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
<ion-content>
|
|
||||||
|
|
||||||
|
<ion-content>
|
||||||
|
<div class="boxed_contents">
|
||||||
|
<ion-accordion-group>
|
||||||
|
<ion-accordion *ngFor="let item of playGroundData" value="{{item.uid}}">
|
||||||
|
<ion-item class="arcord_head" slot="header" color="secondary">
|
||||||
|
<ion-label><span style="font-weight: bolder; color: #8b198e">{{item.topic}}</span> </ion-label>
|
||||||
|
</ion-item>
|
||||||
|
<div class="ion-padding acc-item" slot="content" [innerHTML]="item.contents">
|
||||||
|
</div>
|
||||||
|
</ion-accordion>
|
||||||
|
</ion-accordion-group>
|
||||||
|
</div>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import { Component, OnInit } from '@angular/core';
|
|||||||
styleUrls: ['./resources.page.scss'],
|
styleUrls: ['./resources.page.scss'],
|
||||||
})
|
})
|
||||||
export class ResourcesPage implements OnInit {
|
export class ResourcesPage implements OnInit {
|
||||||
|
playGroundData:any;
|
||||||
constructor() { }
|
constructor() { }
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
|||||||
Reference in New Issue
Block a user