1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-17 12:42:51 +02:00
Minecraft-Phantom-Panel/Server/Phantom.Server.Web/Layout/_Layout.cshtml

38 lines
1.1 KiB
Plaintext

@namespace Phantom.Server.Web.Layout
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<base href="~/" />
<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 href="lib/bootstrap/bootstrap.bundle.min.js"></script>
</body>
</html>