34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!--
|
|
Authors : initappz (Rahul Jograna)
|
|
Website : https://initappz.com/
|
|
App Name : E-Learning App Template
|
|
This App Template Source code is licensed as per the
|
|
terms found in the Website https://initappz.com/license
|
|
Copyright and Good Faith Purchasers © 2021-present initappz.
|
|
-->
|
|
<ion-header mode="ios" class="ion-no-border">
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start" (click)="onBack()">
|
|
<ion-button>
|
|
<ion-icon name="arrow-back-outline"></ion-icon>
|
|
</ion-button>
|
|
</ion-buttons>
|
|
<ion-buttons slot="end">
|
|
<ion-button>
|
|
<ion-icon name="ellipsis-horizontal-circle-outline"></ion-icon>
|
|
</ion-button>
|
|
</ion-buttons>
|
|
<ion-title>Notification</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="ion-padding">
|
|
<div class="flex" *ngFor="let item of notificationData">
|
|
<div class="bg_image back_image" [style.backgroundImage]="'url(assets/images/notifications/'+item.icon+')'"></div>
|
|
<div class="text">
|
|
<ion-label class="bold_text">{{item.date}}</ion-label>
|
|
<ion-label class="grey_text">{{item.title}}</ion-label>
|
|
</div>
|
|
</div>
|
|
</ion-content>
|