Mango.Nop.Plugins/Nop.Plugin.Misc.AuctionPlugin/Views/Auction/LiveScreenRoot.cshtml

23 lines
610 B
Plaintext

@{
Layout = "_LiveScreenLayout.cshtml";
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BodyStartHtmlTagAfter })
@{
await Html.RenderPartialAsync("_Notifications");
}
@{
await Html.RenderPartialAsync("_JavaScriptDisabledWarning");
}
<div class="master-wrapper-page">
<section>
<div class="container-fluid bg-primary" style="height: 100vh;">
@RenderBody()
</div>
</section>
</div>
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BodyEndHtmlTagBefore })