2020-09-16 01:43:55 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>@ViewData["Title"] | Snootalogue</title>
|
|
|
|
<link rel="stylesheet" href="~/css/style.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<nav>
|
2020-09-17 13:37:11 +00:00
|
|
|
<div id="nav-links"><a href="/">Snootalogue</a></div>
|
2020-09-16 02:39:45 +00:00
|
|
|
<div id="nav-controls">
|
|
|
|
<input id="nav-search" type="search" placeholder="Search...">
|
|
|
|
<a class="button inverted" href="#">Help</a>
|
|
|
|
<a class="button inverted" href="#">Upload</a>
|
|
|
|
</div>
|
2020-09-16 01:43:55 +00:00
|
|
|
</nav>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
@RenderBody()
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|