dnet-applications/frontends/dnet-is-application/src/app/app.component.html

19 lines
830 B
HTML
Raw Normal View History

2023-01-20 11:39:34 +01:00
<mat-sidenav-container class="sidenav-container">
2023-01-26 14:56:39 +01:00
<mat-sidenav #drawer class="sidenav mat-elevation-z8" fixedInViewport
[attr.role]="(isHandset$ | async) ? 'dialog' : 'navigation'" [mode]="(isHandset$ | async) ? 'over' : 'side'"
[opened]="(isHandset$ | async) === false">
<app-main-menu-panels></app-main-menu-panels>
</mat-sidenav>
<mat-sidenav-content>
<mat-toolbar color="primary">
<button type="button" aria-label="Toggle sidenav" mat-icon-button (click)="drawer.toggle()">
<mat-icon aria-label="Side nav toggle icon">menu</mat-icon>
</button>
<span>{{title}}</span>
</mat-toolbar>
<div style="padding: 20px;">
2023-01-20 11:39:34 +01:00
<!-- The routed views render in the <router-outlet>-->
<router-outlet></router-outlet>
2023-01-23 11:08:43 +01:00
</div>
2023-01-26 14:56:39 +01:00
</mat-sidenav-content>
</mat-sidenav-container>