23 lines
798 B
Plaintext
23 lines
798 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 id="auctionProductLiveScreenBox" class="container-fluid" style="min-height: 100vh; overflow-y: hidden; background-image: url('../../Plugins/Misc.AuctionPlugin/Content/Images/wallpaper.jpg'); background-attachment: fixed; background-size: cover;">
|
|
@RenderBody()
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BodyEndHtmlTagBefore })
|