mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
12 lines
337 B
HTML
12 lines
337 B
HTML
<ion-app>
|
|
<ion-content *ngIf="stateService.loading; else loaded">
|
|
<h2 color="light">Connecting to Embassy</h2>
|
|
</ion-content>
|
|
<ng-template #loaded>
|
|
<ion-content *ngIf="error">
|
|
<h2 color="light">{{ error }}</h2>
|
|
</ion-content>
|
|
<ion-router-outlet *ngIf="!error"></ion-router-outlet>
|
|
</ng-template>
|
|
</ion-app>
|