mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-18 18:14:20 +01:00
33 lines
929 B
HTML
33 lines
929 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Blazor.Wasm</title>
|
||
|
<base href="/" />
|
||
|
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
|
||
|
<link rel="stylesheet" href="css/app.css" />
|
||
|
<link rel="icon" type="image/png" href="favicon.png" />
|
||
|
<link href="Blazor.Wasm.styles.css" rel="stylesheet" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<svg class="loading-progress">
|
||
|
<circle r="40%" cx="50%" cy="50%" />
|
||
|
<circle r="40%" cx="50%" cy="50%" />
|
||
|
</svg>
|
||
|
<div class="loading-progress-text"></div>
|
||
|
</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>
|