-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathApp.razor
More file actions
48 lines (43 loc) · 1.77 KB
/
App.razor
File metadata and controls
48 lines (43 loc) · 1.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="css/site.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/blazored-modal.css" />
<link rel="icon" type="image/png" href="favicon.ico" />
<HeadOutlet />
</head>
<body>
<div id="components-reconnect-modal" class="my-reconnect-modal components-reconnect-hide">
<div class="show failed refused">
<div class="center-text">
<p>
@Constants.PRODUCT_NAME has paused. This can happen for the following reasons.
<ul>
<li>The attached debugger is currently on a breakpoint. The test tool will resume when execution has continued in the debugger.</li>
<li>The debugger or test tool process has stopped. If so, this window can be closed.</li>
</ul>
</p>
</div>
</div>
</div>
<app>
<Routes @rendermode="Microsoft.AspNetCore.Components.Web.RenderMode.InteractiveServer" />
</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.web.js"></script>
</body>
</html>