_LayoutFluid.cshtml 930 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
	<!-- Required meta tags -->
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
	<meta name="description" content="">
	<meta name="author" content="">
	<link rel="icon" href="~/Content/favicon.ico">
	<link rel="apple-touch-icon" href="~/Content/apple-touch-icon.png">


	<title>@(string.IsNullOrWhiteSpace(ViewBag.Title) ? string.Empty : ViewBag.Title + " - ") @WebConfig.AppName</title>
	@Styles.Render("~/Content/css")
	@Scripts.Render("~/bundles/modernizr")

</head>
<body>
	
	<header>
		@Html.Partial("_Navbar")
	</header>

	<div class="container-fluid">
		@RenderBody()
	</div>

	<footer class="footer">
		<div class="container-fluid">
			@Html.Partial("_Footer")
		</div>
	</footer>
	@Scripts.Render("~/bundles/jquery")
	@Scripts.Render("~/bundles/bootstrap")
	@RenderSection("scripts", required: false)
</body>
</html>