Migre le projet vers Blazor WebAssembly en .NET 10
This commit is contained in:
45
ChessCubing.App/wwwroot/index.html
Normal file
45
ChessCubing.App/wwwroot/index.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||||
<meta name="theme-color" content="#140700" />
|
||||
<meta name="application-name" content="ChessCubing Arena" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<meta name="apple-mobile-web-app-title" content="ChessCubing" />
|
||||
<meta name="description" content="Application officielle ChessCubing Arena en Blazor .NET 10." />
|
||||
<title>ChessCubing Arena</title>
|
||||
<base href="/" />
|
||||
<link rel="preload" id="webassembly" />
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<link rel="shortcut icon" href="favicon.png" />
|
||||
<link rel="apple-touch-icon" href="logo.png" />
|
||||
<link rel="manifest" href="site.webmanifest" />
|
||||
<link rel="stylesheet" href="styles.css" />
|
||||
<link href="ChessCubing.App.styles.css" rel="stylesheet" />
|
||||
<script src="js/chesscubing-interop.js"></script>
|
||||
<script type="importmap"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<div style="min-height: 100dvh; display: grid; place-items: center; padding: 2rem; color: #f5f7fb;">
|
||||
<div style="text-align: center;">
|
||||
<strong style="display: block; margin-bottom: 0.75rem;">ChessCubing Arena</strong>
|
||||
<span>Chargement de l'application Blazor...</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="blazor-error-ui">
|
||||
Une erreur inattendue est survenue.
|
||||
<a href="." class="reload">Recharger</a>
|
||||
<span class="dismiss">x</span>
|
||||
</div>
|
||||
<script src="_framework/blazor.webassembly#[.{fingerprint}].js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user