|
1 | | - |
2 | | -<Router AppAssembly="@typeof(Program).Assembly"> |
3 | | - <Found Context="routeData"> |
4 | | - <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" /> |
5 | | - </Found> |
6 | | - <NotFound> |
7 | | - <LayoutView Layout="@typeof(MainLayout)"> |
8 | | - <p>Sorry, there's nothing at this address.</p> |
9 | | - </LayoutView> |
10 | | - </NotFound> |
11 | | -</Router> |
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="utf-8" /> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 7 | + <base href="/" /> |
| 8 | + <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" /> |
| 9 | + <link rel="stylesheet" href="css/site.css" /> |
| 10 | + <link rel="stylesheet" href="css/font-awesome.min.css" /> |
| 11 | + <link rel="stylesheet" href="css/blazored-modal.css" /> |
| 12 | + <link rel="icon" type="image/png" href="favicon.ico" /> |
| 13 | + <HeadOutlet /> |
| 14 | +</head> |
| 15 | + |
| 16 | +<body> |
| 17 | + <div id="components-reconnect-modal" class="my-reconnect-modal components-reconnect-hide"> |
| 18 | + <div class="show failed refused"> |
| 19 | + <div class="center-text"> |
| 20 | + <p> |
| 21 | + @Constants.PRODUCT_NAME has paused. This can happen for the following reasons. |
| 22 | + <ul> |
| 23 | + <li>The attached debugger is currently on a breakpoint. The test tool will resume when execution has continued in the debugger.</li> |
| 24 | + <li>The debugger or test tool process has stopped. If so, this window can be closed.</li> |
| 25 | + </ul> |
| 26 | + </p> |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + </div> |
| 30 | + |
| 31 | + <app> |
| 32 | + <Routes @rendermode="Microsoft.AspNetCore.Components.Web.RenderMode.InteractiveServer" /> |
| 33 | + </app> |
| 34 | + <div id="blazor-error-ui"> |
| 35 | + <environment include="Staging,Production"> |
| 36 | + An error has occurred. This application may no longer respond until reloaded. |
| 37 | + </environment> |
| 38 | + <environment include="Development"> |
| 39 | + An unhandled exception has occurred. See browser dev tools for details. |
| 40 | + </environment> |
| 41 | + <a href="" class="reload">Reload</a> |
| 42 | + <a class="dismiss">🗙</a> |
| 43 | + </div> |
| 44 | + |
| 45 | + <script src="_framework/blazor.web.js"></script> |
| 46 | +</body> |
| 47 | + |
| 48 | +</html> |
0 commit comments