Iceshrimp.NET/Iceshrimp.Backend/Pages/Shared/FrontendSPA.cshtml
Laura Hausmann 91b5021e4c
[shared] Refactor assembly version info
Because our frontend assembly now also knows its version, we no longer have to rely on meta tags to pass the version on to the frontend.

Since the HTML skeleton no longer includes version information, the nodeinfo response has been amended with the now-absent properties.
2024-07-09 21:50:06 +02:00

44 lines
No EOL
1.1 KiB
Text

@page
@{
Layout = null;
}
@* ReSharper disable Html.PathError *@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<title>Iceshrimp.Frontend</title>
<base href="/"/>
<link rel="stylesheet" href="~/css/app.css"/>
<link rel="stylesheet" href="~/_content/Iceshrimp.Assets.PhosphorIcons/css/ph-regular.css"/>
<link rel="stylesheet" href="~/_content/Iceshrimp.Assets.PhosphorIcons/css/ph-fill.css"/>
<link rel="icon" type="image/png" href="~/favicon.png"/>
<link href="~/Iceshrimp.Frontend.styles.css" rel="stylesheet"/>
</head>
<body>
<div id="app">
<div class="lds-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
@* We need text on screen so chrome actually renders the loading animation *@
&nbsp;
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="~/_framework/blazor.webassembly.js"></script>
</body>
</html>
@* ReSharper restore Html.PathError *@