30 lines
718 B
Plaintext
30 lines
718 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@ViewBag.Title - My ASP.NET Application</title>
|
|
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div>
|
|
<div>
|
|
@Html.ActionLink("InlineConstraintsWebApplication", "Index", "Home", new { area = "" })
|
|
</div>
|
|
<div>
|
|
<ul>
|
|
<li>@Html.ActionLink("Home", "Index", "Home")</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
@RenderBody()
|
|
<hr />
|
|
<footer>
|
|
<p>© 2014 - My ASP.NET Application</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |