aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Views/Shared/_Layout.cshtml
blob: 470bba7b49716b10d210d09f79c0ea9c5f5f6eba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<title>@ViewData["Title"] - Web</title>
	<link rel="stylesheet" href="~/css/site.css" />
	<link rel="stylesheet" href="~/css/styles.css" />
</head>
<body>
	<header>
		<partial name="_Navbar.cshtml" />
	</header>

	<main class="main">
		<div class="middle-content-container">
			@RenderBody()
		</div>
	</main>

	<footer class="border-top box-shadow">
		<div class="middle-content-container">
			&copy; 2021 - Web - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
		</div>
	</footer>
</body>
</html>