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
36 lines (36 loc) · 1.12 KB
/
app.component.html
File metadata and controls
36 lines (36 loc) · 1.12 KB
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
29
30
31
32
33
34
35
36
<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>
<a
target="_blank"
class="github-fork-ribbon"
href="https://github.com/devsecopsmaturitymodel/DevSecOps-MaturityModel"
data-ribbon="Fork me on GitHub"
title="Fork me on GitHub">
Fork me on GitHub
</a>
</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>