615b487a77
Adds missing <summary>/<param> XML docs across 99 server, worker, and test files so CommentChecker reports zero issues (TreatWarningsAsErrors needs the analyzer clean). Bundles in WIP dashboard work: NavSection extraction, MainLayout/site.css/js styling alignment, and DashboardOptions/Auth tweaks.
19 lines
664 B
Plaintext
19 lines
664 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<base href="/" />
|
|
<link rel="stylesheet" href="/lib/bootstrap/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="/css/theme.css" />
|
|
<link rel="stylesheet" href="/css/site.css" />
|
|
<HeadOutlet @rendermode="InteractiveServer" />
|
|
</head>
|
|
<body class="dashboard-body">
|
|
<Routes @rendermode="InteractiveServer" />
|
|
<script src="/lib/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<script src="/js/nav-state.js"></script>
|
|
<script src="/_framework/blazor.web.js"></script>
|
|
</body>
|
|
</html>
|