Removed several DevExpress Blazor Fluent theme stylesheets and the bootstrap-external.bs5.min.css from index.html. Retained only default Bootstrap, app-specific, and DevExpress Dashboard styles to simplify and standardize application theming.
59 lines
2.5 KiB
HTML
59 lines
2.5 KiB
HTML
<!--
|
|
• Ist der technische Einstiegspunkt der Blazor WebAssembly-Anwendung.
|
|
• Sie lädt die notwendigen Ressourcen (z. B. das Blazor-Skript blazor.webassembly.js)
|
|
und definiert den Platzhalter <div id="app">, in dem die Blazor-Komponenten gerendert werden.
|
|
• Ohne diese Datei könnte die Blazor-Anwendung nicht starten, da sie die Verbindung
|
|
zwischen der statischen HTML-Welt und der Blazor-Welt herstellt.
|
|
kurz: Startet die Anwendung und lädt die Blazor-Umgebung.
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>DbFirst.BlazorWasm</title>
|
|
<base href="/" />
|
|
|
|
<!-- Stylesheets für DevExpress und Bootstrap -->
|
|
|
|
<link href="_content/DevExpress.Blazor.Dashboard/ace.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/ace-theme-dreamweaver.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/ace-theme-ambiance.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx.light.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-analytics.common.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-analytics.light.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-querybuilder.css" rel="stylesheet" />
|
|
<link href="_content/DevExpress.Blazor.Dashboard/dx-dashboard.light.min.css" rel="stylesheet" />
|
|
|
|
<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="DbFirst.BlazorWasm.styles.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Einstiegspunkt der Blazor-Anwendung -->
|
|
<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>
|
|
|
|
<!-- Fehler-UI für unvorhergesehene Fehler -->
|
|
<div id="blazor-error-ui">
|
|
An unhandled error has occurred.
|
|
<a href="" class="reload">Reload</a>
|
|
<a class="dismiss">🗙</a>
|
|
</div>
|
|
|
|
<!-- Blazor WebAssembly-Skript -->
|
|
<script src="_framework/blazor.webassembly.js"></script>
|
|
</body>
|
|
|
|
</html>
|