-
-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathapp.component.html
More file actions
22 lines (21 loc) · 807 Bytes
/
app.component.html
File metadata and controls
22 lines (21 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<mat-drawer-container class="main-container" autosize>
<mat-drawer #drawer class="sidenav-menu" mode="side" opened="{{ menuIsOpen }}">
<button class="menu-close" (click)="toggleMenu()">
<mat-icon class="white-icon">close</mat-icon>
</button>
<a routerLink="/"><app-logo></app-logo></a>
<app-sidenav-buttons></app-sidenav-buttons>
</mat-drawer>
<div class="sidenav-content">
<button type="button" mat-button (click)="toggleMenu()" color="primary">
<mat-icon>menu</mat-icon>
</button>
<div class="tag-line">
<div class="tag-title">{{ title || defaultTitle }}</div>
<div class="tag-subtitle">{{ subtitle }}</div>
</div>
<div class="dummy"></div>
</div>
<mat-divider></mat-divider>
<router-outlet></router-outlet>
</mat-drawer-container>