BlazorStart/Start/Client/wwwroot/index.html

41 lines
1.3 KiB
HTML
Raw Normal View History

2021-11-13 03:21:59 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Start</title>
<base href="/" />
2021-12-04 00:44:02 +00:00
<script src="_content/Fluxor.Blazor.Web/scripts/index.js"></script>
2021-12-09 05:59:43 +00:00
<link href="css/spectre/spectre.css" rel="stylesheet" />
<link href="css/spectre/spectre-exp.css" rel="stylesheet" />
<link href="css/spectre/spectre-icons.css" rel="stylesheet" />
2021-11-13 03:21:59 +00:00
<link href="css/app.css" rel="stylesheet" />
2021-12-11 06:37:36 +00:00
<link href="css/dark-mode.css" rel="stylesheet" />
2021-12-04 00:44:02 +00:00
2021-11-13 03:21:59 +00:00
<link href="manifest.json" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
</head>
<body>
2021-11-30 05:22:14 +00:00
<div id="app">
<div class="text-center appLoadingContainer">
<div class="loading loading-lg"></div>
Loading...
</div>
</div>
2021-11-13 03:21:59 +00:00
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication/AuthenticationService.js"></script>
<script src="_framework/blazor.webassembly.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
</body>
</html>