File indexing completed on 2025-04-18 08:05:34
0001 <app-shell [isLeftPaneVisible]="true">
0002
0003 <ng-container header>
0004
0005 <button mat-icon-button (click)="onDebugClick()">
0006 <mat-icon>bug_report</mat-icon>
0007 </button>
0008 </ng-container>
0009
0010
0011 <div leftPane>
0012 <mat-card style="padding: 10px"><mat-card-title>Documentation</mat-card-title></mat-card>
0013 <mat-nav-list>
0014 <a *ngFor="let page of docPages" (click)="selectPage(page)" mat-list-item>
0015 - {{ page.title }}
0016 </a>
0017 </mat-nav-list>
0018 </div>
0019
0020
0021 <div centralPane>
0022 <div class="documentation-content">
0023 <markdown [src]="docUrl"></markdown>
0024 </div>
0025 </div>
0026
0027
0028 </app-shell>