|
3 | 3 | @inject SvgHelper svgHelper
|
4 | 4 | @inject IOptions<MultiplayerSettings> MultiplayerSettings
|
5 | 5 |
|
6 |
| - <div class="game-content"> |
7 |
| - <div class="header-layout"> |
8 |
| - <div class="header-layout-item"></div> |
9 |
| - <div class="header-layout-item header-layout-item--large"> |
10 |
| - <RPSLS.Web.Components.MainTitle Title="@Title" ShowHelp="@ShowHelp"></RPSLS.Web.Components.MainTitle> |
11 |
| - </div> |
12 |
| - <div class="header-layout-item"> |
13 |
| - @if (ShowLeaderboardLink) |
14 |
| - { |
15 |
| - <RPSLS.Web.Components.LeaderboardLink MultiplayerSettings="MultiplayerSettings.Value" /> |
16 |
| - } |
17 |
| - </div> |
18 |
| - </div> |
19 |
| - <div class="console"> |
20 |
| - <div class="console-content"> |
21 |
| - <div class="console-controls"> |
22 |
| - @svgHelper.GetImage($"/assets/images/svg/controls_left.svg") |
23 |
| - </div> |
24 |
| - <CascadingValue Value="this"> |
25 |
| - @Body |
26 |
| - </CascadingValue> |
27 |
| - <div class="console-controls"> |
28 |
| - @svgHelper.GetImage($"/assets/images/svg/controls_right.svg") |
| 6 | +<div class="game-content"> |
| 7 | + <div class="header-layout"> |
| 8 | + <div class="header-layout-item"> |
| 9 | + <div class="home-link"> |
| 10 | + <div class="home-link-info"> |
| 11 | + <a href="/index">HOME</a> |
| 12 | + </div> |
29 | 13 | </div>
|
| 14 | + </div> |
| 15 | + <div class="header-layout-item header-layout-item--large"> |
| 16 | + <RPSLS.Web.Components.MainTitle Title="@Title" ShowHelp="@ShowHelp"></RPSLS.Web.Components.MainTitle> |
| 17 | + </div> |
| 18 | + <div class="header-layout-item"> |
| 19 | + @if (ShowLeaderboardLink) |
| 20 | + { |
| 21 | + <RPSLS.Web.Components.LeaderboardLink MultiplayerSettings="MultiplayerSettings.Value" /> |
| 22 | + } |
| 23 | + </div> |
| 24 | + </div> |
| 25 | + <div class="console"> |
| 26 | + <div class="console-content"> |
| 27 | + <div class="console-controls"> |
| 28 | + @svgHelper.GetImage($"/assets/images/svg/controls_left.svg") |
| 29 | + </div> |
| 30 | + <CascadingValue Value="this"> |
| 31 | + @Body |
| 32 | + </CascadingValue> |
| 33 | + <div class="console-controls"> |
| 34 | + @svgHelper.GetImage($"/assets/images/svg/controls_right.svg") |
30 | 35 | </div>
|
31 | 36 | </div>
|
32 | 37 | </div>
|
| 38 | +</div> |
33 | 39 |
|
34 | 40 | @if (ShowGithub)
|
35 | 41 | {
|
|
0 commit comments