AuthorBuddy/Components/App.razor

28 lines
866 B
Text
Raw Permalink Normal View History

2026-05-14 12:31:35 +02:00
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<ResourcePreloader />
<link rel="stylesheet" href="@Assets["app.css"]" />
<link id="theme-css" rel="stylesheet" href="@Assets["css/themes/light.css"]" />
<link rel="stylesheet" href="@Assets["AuthorBuddy.Web.styles.css"]" />
<ImportMap />
<link rel="icon" type="image/png" href="favicon.png" />
<HeadOutlet />
</head>
<body>
2026-05-21 11:04:42 +02:00
<CascadingAuthenticationState>
<Routes @rendermode="InteractiveServer" />
</CascadingAuthenticationState>
2026-05-14 12:31:35 +02:00
<ReconnectModal />
<script src="@Assets["_framework/blazor.web.js"]"></script>
2026-05-31 19:31:27 +02:00
<script src="@Assets["js/editor-toolbar.js"]"></script>
<script src="@Assets["js/download.js"]"></script>
2026-05-14 12:31:35 +02:00
</body>
</html>