forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 2.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ComponentsWebAssembly-CSharp</title>
<base href="/" />
<link rel="preload" id="webassembly" />
<!--#if SampleContent -->
<link rel="stylesheet" href="lib/bootstrap/dist/css/bootstrap.min.css" />
<!--#endif -->
<link rel="stylesheet" href="css/app.css" />
<!--#if SampleContent -->
<link rel="icon" type="image/png" href="favicon.png" />
<link href="ComponentsWebAssembly-CSharp.styles.css" rel="stylesheet" />
<!--#else -->
<!-- If you add any scoped CSS files, uncomment the following to load them
<link href="ComponentsWebAssembly-CSharp.styles.css" rel="stylesheet" /> -->
<!--#endif -->
<!--#if PWA -->
<link href="manifest.webmanifest" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
<link rel="apple-touch-icon" sizes="192x192" href="icon-192.png" />
<!--#endif -->
<script type="importmap"></script>
</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>
<span class="dismiss">🗙</span>
</div>
<!--#if (IndividualLocalAuth) -->
<script src="_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication/AuthenticationService.js"></script>
<!--#endif -->
<!--#if (IndividualB2CAuth || OrganizationalAuth) -->
<script src="_content/Microsoft.Authentication.WebAssembly.Msal/AuthenticationService.js"></script>
<!--#endif -->
<script src="_framework/blazor.webassembly#[.{fingerprint}].js"></script>
<!--#if PWA -->
<script>navigator.serviceWorker.register('service-worker.js');</script>
<!--#endif -->
</body>
</html>