mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
16 lines
475 B
HTML
16 lines
475 B
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<pwa-back-button></pwa-back-button>
|
|
</ion-buttons>
|
|
<ion-title>Instructions</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="ion-padding">
|
|
<text-spinner *ngIf="loading; else loaded" text="Loading Instructions"></text-spinner>
|
|
|
|
<ng-template #loaded>
|
|
<div *ngIf="instructions" class="instuctions-padding" [innerHTML]="instructions | markdown"></div>
|
|
</ng-template>
|
|
</ion-content> |