Seenginx/Seenginx/Pages/_Host.cshtml

45 lines
1.3 KiB
Plaintext

@page "/"
@namespace Seenginx.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
Layout = null;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="~/favicon.png" />
<title>Seenginx</title>
<base href="~/" />
<environment include="Staging,Production">
<link rel="stylesheet" href="~/css/open-iconic.min.css" />
<link rel="stylesheet" href="~/css/pure.min.css" />
</environment>
<environment include="Development">
<link rel="stylesheet" href="~/css/open-iconic.css" />
<link rel="stylesheet" href="~/css/pure.css" />
</environment>
<link href="css/site.css" rel="stylesheet" />
</head>
<body>
<app>
<component type="typeof(App)" render-mode="ServerPrerendered" />
</app>
<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>
<script src="_framework/blazor.server.js"></script>
</body>
</html>