mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
* replace offline toast with global indicator * use hostname from patchDB as default server name * add alert to marketplace delete and reword logout alert
28 lines
781 B
HTML
28 lines
781 B
HTML
<ion-app appEnter>
|
|
<ion-content>
|
|
<ion-split-pane
|
|
contentId="main-content"
|
|
[disabled]="!(authService.isVerified$ | async)"
|
|
(ionSplitPaneVisible)="splitPaneVisible($event)"
|
|
>
|
|
<ion-menu contentId="main-content" type="overlay">
|
|
<ion-content color="light" scrollY="false">
|
|
<app-menu></app-menu>
|
|
</ion-content>
|
|
</ion-menu>
|
|
<ion-router-outlet id="main-content"></ion-router-outlet>
|
|
</ion-split-pane>
|
|
|
|
<section appPreloader></section>
|
|
</ion-content>
|
|
<ion-footer>
|
|
<footer appFooter></footer>
|
|
</ion-footer>
|
|
<ion-footer
|
|
*ngIf="(authService.isVerified$ | async) && !(sidebarOpen$ | async)"
|
|
>
|
|
<connection-bar></connection-bar>
|
|
</ion-footer>
|
|
<toast-container></toast-container>
|
|
</ion-app>
|