CaffGeek/MBACNationals

View on GitHub
Website/src/app/website/website.component.html

Summary

Maintainability
Test Coverage
<app-layout *ngIf="tournament" [class]="tournament.Theme || 'default'">
    <app-topmenu [year]="tournament.Year" (navToggle)="sidenav.toggle()"></app-topmenu>
        
    <mat-sidenav-container>
        <mat-sidenav #sidenav mode="over" fixedInViewport="true" role="navigation">
            <app-sidemenu [year]="tournament.Year"></app-sidemenu>
        </mat-sidenav>
        <mat-sidenav-content>
            <app-banner [tournament]="tournament"></app-banner>
            <main>
                <router-outlet></router-outlet>
            </main>
        </mat-sidenav-content>
    </mat-sidenav-container>
</app-layout>