17 lines
519 B
Plaintext
17 lines
519 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=11;IE=10; IE=9; IE=8; IE=7; IE=EDGE">
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>@ViewBag.Title</title>
|
|
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" />
|
|
<script src="~/Scripts/modernizr-2.6.2.js"></script>
|
|
</head>
|
|
<body>
|
|
@RenderBody()
|
|
<script src="~/Scripts/jquery-1.10.2.js"></script>
|
|
@RenderSection("scripts", required: false)
|
|
</body>
|
|
</html>
|