forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.html
More file actions
28 lines (28 loc) · 916 Bytes
/
app.component.html
File metadata and controls
28 lines (28 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<mat-toolbar class="mat-elevation-z2 navbar">
<button mat-icon-button (click)="toggleMenu()" class="menu-btn">
<mat-icon>menu</mat-icon>
</button>
<a routerLink="/" class="logo">
<app-logo class="logo-icon"></app-logo>
</a>
<div class="title-container">
<div class="tag-line">
<div class="tag-title">
{{ title || defaultTitle }}
</div>
<div class="tag-subtitle" *ngIf="subtitle">
{{ subtitle }}
</div>
</div>
<div class="dummy"></div>
</div>
<span class="spacer"></span>
</mat-toolbar>
<mat-sidenav-container class="sidenav-container">
<mat-sidenav mode="side" opened class="sidenav" [style.width]="sidenavWidth">
<app-sidenav-buttons></app-sidenav-buttons>
</mat-sidenav>
<mat-sidenav-content class="content" [style.margin-left]="sidenavWidth">
<router-outlet></router-outlet>
</mat-sidenav-content>
</mat-sidenav-container>