Add WPF/WebView2 desktop host project
- Program.cs with application bootstrap and DI setup - index.html entry point with Blazor WebView - Application stylesheet
This commit is contained in:
27
src/Duempelkas.Desktop/wwwroot/index.html
Normal file
27
src/Duempelkas.Desktop/wwwroot/index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de" data-bs-theme="dark">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<base href="/" />
|
||||
<title>Dümpelkas – Kassenbuch</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YcnS/1nDaGm7AT/+aIi56blBBJoSpcBx5Hn"
|
||||
crossorigin="anonymous" />
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
|
||||
rel="stylesheet" />
|
||||
<link href="css/app.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<app>Laden...</app>
|
||||
|
||||
<div id="blazor-error-ui">
|
||||
Ein unbehandelter Fehler ist aufgetreten.
|
||||
<a href="" class="reload">Neu laden</a>
|
||||
<a class="dismiss">×</a>
|
||||
</div>
|
||||
|
||||
<script src="_framework/blazor.webview.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user