0853bcee50
completes #150
22 lines
746 B
Plaintext
22 lines
746 B
Plaintext
@{
|
|
Html.BundleDeferred("~/Style/Dialog");
|
|
Html.BundleDeferred("~/Style/Site");
|
|
Html.BundleDeferred("~/ClientScripts/Core");
|
|
}
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Disco ICT - @CommonHelpers.BreadcrumbsTitle(ViewBag.Title)</title>
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=20131224c" />
|
|
<meta name="application-name" content="Disco ICT" />
|
|
<meta name="msapplication-starturl" content="/" />
|
|
<meta name="msapplication-tooltip" content="Open Disco ICT" />
|
|
@Html.BundleRenderDeferred()
|
|
@RenderSection("head", false)
|
|
</head>
|
|
<body class="layoutDialog">
|
|
@RenderBody()
|
|
@{ Disco.Services.Plugins.Features.UIExtension.UIExtensions.ExecuteExtensionResult(this); }
|
|
</body>
|
|
</html>
|