mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
@using Phantom.Server.Web.Identity.Interfaces
|
|
@namespace Phantom.Server.Web.Layout
|
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
|
@inject INavigation Navigation
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<base href="@Navigation.BasePath" />
|
|
<link href="css/site.css" rel="stylesheet" />
|
|
@* ReSharper disable once Html.PathError *@
|
|
<link href="Phantom.Server.Web.styles.css" rel="stylesheet" />
|
|
<title>Phantom Panel</title>
|
|
</head>
|
|
|
|
<body>
|
|
@RenderBody()
|
|
|
|
<div id="blazor-error-ui">
|
|
<environment include="Staging,Production">
|
|
An error has occurred. This application may no longer respond until reloaded.
|
|
</environment>
|
|
<environment include="Development">
|
|
An unhandled exception has occurred. See browser dev tools for details.
|
|
</environment>
|
|
<a href="" class="reload">Reload</a>
|
|
<a class="dismiss">🗙</a>
|
|
</div>
|
|
|
|
@* ReSharper disable Html.PathError *@
|
|
<script src="_framework/blazor.server.js"></script>
|
|
@* ReSharper restore Html.PathError *@
|
|
<script src="lib/bootstrap/bootstrap.bundle.min.js"></script>
|
|
<script src="js/site.js"></script>
|
|
</body>
|
|
|
|
</html>
|