28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mileage Traker - ETHRA - @ViewBag.Title</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
|
|
<link href="@Url.Content("~/Content/themes/custom-theme/jquery-ui-1.9.2.custom.min.css")" rel="stylesheet" type="text/css" />
|
|
@RenderSection("Styles", false)
|
|
@if (ViewBag.PageStyle != null)
|
|
{
|
|
<link href="@Url.Content(ViewBag.PageStyle)" rel="stylesheet" type="text/css" />
|
|
}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="header">
|
|
<img src="@Url.Content("~/Content/images/Header_white.png")" alt="Mileage Traker" />
|
|
</div>
|
|
@RenderBody()
|
|
|
|
<script src="@Url.Content("~/Scripts/jquery-1.8.3.min.js")" type="text/javascript"></script>
|
|
<script src="@Url.Content("~/Scripts/jquery.numeric.js")" type="text/javascript"></script>
|
|
<script src="@Url.Content("~/Scripts/jquery-ui-1.9.2.custom.min.js")" type="text/javascript"></script>
|
|
<script src="@Url.Content("~/Scripts/Shared/Site.js")" type="text/javascript"></script>
|
|
@RenderSection("Scripts", false)
|
|
</body>
|
|
</html>
|