You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/app/home/home.page.html

22 lines
782 B

<ion-toolbar>
<ion-buttons slot="start">
<ion-menu-toggle>
<ion-button>
<ion-icon slot="icon-only" name="menu"></ion-icon>
</ion-button>
</ion-menu-toggle>
</ion-buttons>
</ion-toolbar>
<ion-grid style="height: 100%; justify-content: center; display: flex; flex-direction: column; font-size: 24pt; color: #ccc;">
<ion-row align-items-center *ngIf="!api.isPublicUser">
<ion-col>Hi, there! Select or create a page to get started.</ion-col>
</ion-row>
<ion-row align-items-center style="margin-top: 30px;" *ngIf="!api.isPublicUser">
<ion-col>(You can press <code>Ctrl</code> + <code>/</code> to search everywhere.)</ion-col>
</ion-row>
<ion-row align-items-center *ngIf="api.isPublicUser">
Redirecting...
</ion-row>
</ion-grid>