Change homepage title: 'Urnings' → 'looking?'
This commit is contained in:
@@ -1,14 +1,25 @@
|
|||||||
<ion-header>
|
<ion-header>
|
||||||
<ion-toolbar>
|
<ion-toolbar>
|
||||||
<ion-title>Urnings</ion-title>
|
<ion-title>looking?</ion-title>
|
||||||
</ion-toolbar>
|
</ion-toolbar>
|
||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
<ion-content no-padding>
|
<ion-content no-padding>
|
||||||
<ion-grid no-padding>
|
<ion-grid no-padding>
|
||||||
<ion-row align-items-stretch>
|
<ion-row align-items-stretch>
|
||||||
<ion-col col-4 class="profile" *ngFor="let current of profiles" (tap)="profileTapped($event, current)" (press)="profilePressed($event, current)" [style.backgroundImage]="getBackgroundThumbnail(current.details.pic)">
|
<ion-col
|
||||||
<span class="username" [ngClass]="{ 'online': (current.messages?.length > 0) }">{{current.details.name}}</span>
|
col-4
|
||||||
|
class="profile"
|
||||||
|
*ngFor="let current of profiles"
|
||||||
|
(tap)="profileTapped($event, current)"
|
||||||
|
(press)="profilePressed($event, current)"
|
||||||
|
[style.backgroundImage]="getBackgroundThumbnail(current.details.pic)"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="username"
|
||||||
|
[ngClass]="{ 'online': (current.messages?.length > 0) }"
|
||||||
|
>{{current.details.name}}</span
|
||||||
|
>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
</ion-row>
|
</ion-row>
|
||||||
</ion-grid>
|
</ion-grid>
|
||||||
|
|||||||
Reference in New Issue
Block a user