mirror of
https://github.com/Yourdaylight/CloudGame.git
synced 2026-07-28 01:25:17 +00:00
26 lines
747 B
HTML
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>
|