|
1 |
| -<Router AppAssembly="@typeof(App).Assembly"> |
2 |
| - <Found Context="routeData"> |
3 |
| - <RouteView RouteData="@routeData" /> |
4 |
| - <FocusOnNavigate RouteData="@routeData" Selector="h1" /> |
5 |
| - </Found> |
6 |
| - <NotFound> |
7 |
| - <PageTitle>Not found</PageTitle> |
8 |
| - <LayoutView> |
9 |
| - <p role="alert">Sorry, there's nothing at this address.</p> |
10 |
| - </LayoutView> |
11 |
| - </NotFound> |
12 |
| -</Router> |
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <base href="/" /> |
| 7 | + |
| 8 | + <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" /> |
| 9 | + <link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" /> |
| 10 | + <link href="_content/NodeDev.Blazor/styles.css" rel="stylesheet" /> |
| 11 | + |
| 12 | + <link href="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css" rel="stylesheet" /> |
| 13 | + |
| 14 | + <link href="_content/Z.Blazor.Diagrams/style.min.css" rel="stylesheet" /> |
| 15 | + <link href="_content/Z.Blazor.Diagrams/default.styles.min.css" rel="stylesheet" /> |
| 16 | +</head> |
| 17 | +<body style="width: 100vw; height: 100vh"> |
| 18 | + |
| 19 | + <Routes @rendermode="InteractiveServer" /> |
| 20 | + |
| 21 | + <script src="_content/BlazorMonaco/jsInterop.js"></script> |
| 22 | + <script src="_content/BlazorMonaco/lib/monaco-editor/min/vs/loader.js"></script> |
| 23 | + <script src="_content/BlazorMonaco/lib/monaco-editor/min/vs/editor/editor.main.js"></script> |
| 24 | + |
| 25 | + <script src="_framework/blazor.web.js"></script> |
| 26 | + <script src="_content/MudBlazor/MudBlazor.min.js"></script> |
| 27 | + |
| 28 | + <script src="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"></script> |
| 29 | + |
| 30 | + <script src="_content/Z.Blazor.Diagrams/script.min.js"></script> |
| 31 | +</body> |
| 32 | +</html> |
0 commit comments