2025-04-16 14:27:41 +07:00
|
|
|
@using Microsoft.AspNetCore.Components.Routing
|
2025-04-17 22:25:37 +07:00
|
|
|
@using БлэкДжек.Components.Layout
|
2025-04-16 14:27:41 +07:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ru">
|
2025-04-16 10:24:33 +07:00
|
|
|
|
|
|
|
<head>
|
2025-04-16 14:27:41 +07:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<base href="/" />
|
2025-04-16 10:24:33 +07:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
|
|
|
<link href="css/app.css" rel="stylesheet" />
|
2025-04-16 14:27:41 +07:00
|
|
|
<link href="БлэкДжек.styles.css" rel="stylesheet" />
|
|
|
|
<HeadOutlet />
|
2025-04-16 10:24:33 +07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2025-04-17 22:25:37 +07:00
|
|
|
<Router AppAssembly="@typeof(App).Assembly">
|
|
|
|
<Found Context="routeData">
|
|
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
|
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
|
|
|
</Found>
|
|
|
|
<NotFound>
|
|
|
|
<PageTitle>Not found</PageTitle>
|
|
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
|
|
<p role="alert">Страница не найдена.</p>
|
|
|
|
</LayoutView>
|
|
|
|
</NotFound>
|
|
|
|
</Router>
|
2025-04-16 10:24:33 +07:00
|
|
|
<script src="_framework/blazor.web.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|