Files
CloudGame/front/src/app/pages/layout/layout.component.html
T
2023-12-07 23:47:10 +08:00

26 lines
747 B
HTML

<div class="layout">
<nz-layout>
<nz-header>
<div class="logo">Game App</div>
<ul nz-menu nzTheme="dark" nzMode="inline" nzMode="horizontal">
<li nz-menu-item nzMatchRouter>
<a routerLink="/layout/list">Game Toplist</a>
</li>
<li nz-menu-item nzMatchRouter>
<a routerLink="/layout/favorite">Favorite</a>
</li>
</ul>
<span class="right-top-tool"
>{{ username
}}<span routerLink="/login" class="sign">sign out</span></span
>
</nz-header>
<nz-content>
<div class="inner-content">
<router-outlet></router-outlet>
</div>
</nz-content>
<nz-footer>Game App ©2023 Implement By me</nz-footer>
</nz-layout>
</div>