jerguero-cs/Pages/Shared/_Layout.cshtml

26 lines
884 B
Plaintext
Raw Permalink Normal View History

2024-08-23 23:10:52 +00:00
<!DOCTYPE html>
2024-08-24 00:25:42 +00:00
<html lang="es">
2024-08-23 23:20:48 +00:00
2024-08-23 23:10:52 +00:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-08-24 00:25:42 +00:00
<title>@ViewData["Title"] - Jerguero</title>
2024-08-23 23:20:48 +00:00
<link rel="stylesheet" href="~/css/tailwind-output.css" asp-append-version="true" />
2024-08-24 00:25:42 +00: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=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@@phosphor-icons/web@2.0.3/src/regular/style.css" />
<script defer src="https://unpkg.com/hyperscript.org@0.9.12"></script>
2024-08-23 23:10:52 +00:00
</head>
2024-08-23 23:20:48 +00:00
<body>
@RenderBody()
2024-08-23 23:10:52 +00:00
@await RenderSectionAsync("Scripts", required: false)
</body>
2024-08-23 23:20:48 +00:00
2024-08-23 23:10:52 +00:00
</html>