You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
13 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>@ViewBag.Title</title>
|
||
|
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
|
||
|
<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
|
||
|
<script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script>
|
||
|
|
||
|
@* Make sure you've added this one line to your LAYOUT or MASTER PAGE *@
|
||
|
|
||
|
@MvcMiniProfiler.MiniProfiler.RenderIncludes()
|
||
|
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="page">
|
||
|
<header>
|
||
|
<div id="title">
|
||
|
<h1>My MVC Application</h1>
|
||
|
</div>
|
||
|
<div id="logindisplay">
|
||
|
@Html.Partial("_LogOnPartial")
|
||
|
</div>
|
||
|
<nav>
|
||
|
<ul id="menu">
|
||
|
<li>@Html.ActionLink("Home", "Index", "Home")</li>
|
||
|
<li>@Html.ActionLink("About", "About", "Home")</li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</header>
|
||
|
<section id="main">
|
||
|
@RenderBody()
|
||
|
</section>
|
||
|
<footer>
|
||
|
</footer>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|