-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.html
More file actions
64 lines (38 loc) · 1.39 KB
/
app.component.html
File metadata and controls
64 lines (38 loc) · 1.39 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<div>
<mat-toolbar color="">
<div fxShow="true" fxHide.gt-sm="true">
<span href="#" (click)="sidenav.open()" style="color:white;" mat-button>
<mat-icon fontSet="fa" fontIcon="fa-bars"></mat-icon>
</span>
</div>
<span>
<a class="menuitem" routerLink="/">
<figure>
<img id="logo" src="assets/img/logo.svg" alt="">
</figure>
</a>
</span>
<!-- <a routerLink="/contact" mat-button>Contact</a> -->
<span class="example-spacer"></span>
<div fxShow="true" fxHide.lt-md="true">
<!-- The following menu items will be hidden on both SM and XS screen sizes -->
<a href="#" class="menuitem" >About me</a>
<a href="#" class="menuitem" >Resume</a>
<a routerLink="/contact" class="menuitem">Contact</a>
</div>
</mat-toolbar>
<mat-sidenav-container fxFlexFill class="example-container">
<mat-sidenav #sidenav fxLayout="column">
<div fxLayout="column">
<button (click)="sidenav.close()" mat-button>Close</button >
<a href="#" mat-button>Menu Item 1</a>
<a href="#" mat-button>Menu Item 2</a>
<a href="#" mat-button>Menu Item 3</a>
<a routerLink="/contact" mat-button>Contact</a>
</div>
</mat-sidenav>
<mat-sidenav-content fxFlexFill>
<router-outlet></router-outlet>
</mat-sidenav-content>
</mat-sidenav-container>
</div>