Files
gpw_next/GPW.CORE.Smart8/Components/Layout/MainLayout.razor
T
2025-03-22 11:05:20 +01:00

24 lines
676 B
Plaintext

@inherits LayoutComponentBase
<PageTitle>GPW.CORE.Smart</PageTitle>
<div class="page vh-100">
<main class="vw-100">
<CmpTop @rendermode="InteractiveAuto" IpIsLocal=@isIpLocal CurrUser=@currUser EC_ReturnHome=@ReturnHome EC_ForceReset=@ForceReset></CmpTop>
<article class="content p-2">
@Body
</article>
@if (dataLoaded)
{
<NavBottom @rendermode="InteractiveAuto" CurrConf=@currConfig IdxDipendente=@currUser.IdxDip></NavBottom>
}
</main>
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>