@{ Layout = "~/Views/Shared/_ReferenceLayout.cshtml"; } @using NzbDrone.Common @using NzbDrone.Web.Helpers @using StackExchange.Profiling @section HeaderContent { @if (string.IsNullOrWhiteSpace(ViewBag.Title) || String.Equals(ViewBag.Title, "NzbDrone", StringComparison.InvariantCultureIgnoreCase)) { ViewBag.Title = "NzbDrone"; } else { ViewBag.Title = String.Format("{0} - NzbDrone", ViewBag.Title); } @ViewBag.Title @if (!Request.Browser.IsMobileDevice && (!EnvironmentProvider.IsProduction || ProfilerHelper.Enabled())) { @MiniProfiler.RenderIncludes() } @Html.IncludeCss("Grid.css") @RenderSection("HeaderContent", required: false) }
@RenderSection("ActionMenu", required: false) @RenderBody()
background notification
@section Scripts { @RenderSection("Scripts", required: false) @Html.IncludeScript("jquery.signalR.min.js") }