Coding/BinaryDad.Coding/Views/Shared/_Layout.cshtml

54 lines
2.3 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"] - Coding HTML 101!</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" />
<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+Mono&display=swap" rel="stylesheet">
@await RenderSectionAsync("Css", false)
</head>
<body>
<header class="container">
<nav class="navbar navbar-expand navbar-dark justify-content-between">
<a class="navbar-brand text-white" href="#">Coding HTML 101</a>
<form class="form-inline" action="">
<input type="text" class="form-control mr-sm-2" id="your-name-text" placeholder="Enter your name!" />
<input type="text" class="form-control" id="your-color-text" placeholder="Color?" />
</form>
<a class="navbar-text ml-3" href="https://www.w3schools.com/cssref/css_colors.asp" target="_blank">List of colors</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item d-none d-md-block">
<div class="navbar-text font-italic" id="live-mode-status">
<div><strong>Live Mode Enabled</strong></div>
<div>Anything the teacher types will show in your editor</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link btn" id="live-mode-link" href="#live">Live Mode</a>
</li>
</ul>
</div>
</nav>
</header>
<div>
@RenderBody()
</div>
<footer class="container">
<div id="users-list" class="text-white">&nbsp;</div>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/js/extensions.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", false)
</body>
</html>