2023-02-09 02:30:14 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>@ViewData["Title"] - WeatherDashboard.Web</title>
|
2023-02-10 03:33:02 +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=Montserrat:wght@100;300;500&display=swap" rel="stylesheet">
|
2023-02-09 02:30:14 +00:00
|
|
|
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-02-10 03:33:02 +00:00
|
|
|
|
2023-02-09 02:30:14 +00:00
|
|
|
<div class="container">
|
|
|
|
<main role="main" class="pb-3">
|
|
|
|
@RenderBody()
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
|
|
|
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<script src="~/js/site.js" asp-append-version="true"></script>
|
|
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
|
|
</body>
|
|
|
|
</html>
|