23 lines
869 B
Text
23 lines
869 B
Text
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="da">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>@ViewData["Title"] - PlanTempus</title>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@@phosphor-icons/web@@2.1.2/src/regular/style.css" />
|
||
|
|
<!-- Design System -->
|
||
|
|
<link rel="stylesheet" href="~/css/design-tokens.css">
|
||
|
|
<link rel="stylesheet" href="~/css/design-system.css">
|
||
|
|
<link rel="stylesheet" href="~/css/base.css">
|
||
|
|
<!-- Auth Styles -->
|
||
|
|
<link rel="stylesheet" href="~/css/auth.css">
|
||
|
|
@await RenderSectionAsync("Styles", required: false)
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
@RenderBody()
|
||
|
|
|
||
|
|
@await RenderSectionAsync("Scripts", required: false)
|
||
|
|
</body>
|
||
|
|
</html>
|