36 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

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">
<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="/" />
<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 />
</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>
<script src="_framework/blazor.web.js"></script>
</body>
</html>