38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
<title>@ViewData["Title"] - auto.bus</title>
|
|
|
|
<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=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="~/css/Layout.css" asp-append-version="true"/>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="topnav">
|
|
@{
|
|
string path = @Model.Request.Path.ToString();
|
|
}
|
|
|
|
<a class="@(path == "/" ? "active" : "")" href="/">Головна</a>
|
|
<a class="@(path.Contains("routes") ? "active" : "")" href="/routes">Пошук маршрутів</a>
|
|
<div class="topnav-right">
|
|
<a class="@(path.Contains("auth") ? "active" : "")" href="/auth/login">Авторизація</a>
|
|
</div>
|
|
</div>
|
|
|
|
@RenderBody()
|
|
|
|
|
|
|
|
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
|
<script src="~/js/site.js" asp-append-version="true"></script>
|
|
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
</body>
|
|
</html> |