35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
@{
|
|
Html.BundleDeferred("~/Style/Site");
|
|
Html.BundleDeferred("~/ClientScripts/Core");
|
|
}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>Disco@{if(ViewBag.Title != null){<text> - @CommonHelpers.BreadcrumbsTitle(ViewBag.Title)</text>}}</title>
|
|
@Html.BundleRenderDeferred()
|
|
@RenderSection("head", false)
|
|
</head>
|
|
<body class="layout">
|
|
<div class="page">
|
|
<header>
|
|
<div class="clearfix">
|
|
<div id="heading">
|
|
<a href="@Url.Action(MVC.Public.Public.Index())">
|
|
<img src="@Links.ClientSource.Style.Images.Heading_png" alt="DISCO - ICT Asset Management" /></a>
|
|
</div>
|
|
<div id="headerMenu">
|
|
</div>
|
|
</div>
|
|
</header>
|
|
@if(ViewBag.Title != null){<div id="layout_PageHeading">@CommonHelpers.Breadcrumbs(ViewBag.Title)</div>}
|
|
<section id="layout_Page">
|
|
@RenderBody()
|
|
</section>
|
|
<footer>
|
|
Disco v@(Disco.Web.DiscoApplication.Version)
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |