Files
gpw_next/GPW.CORE.Smart8/Components/Layout/MainLayout.razor
T

25 lines
692 B
Plaintext

@using NLog
@inherits LayoutComponentBase
<PageTitle>GPW.CORE.Smart</PageTitle>
<div class="page vh-100">
<main class="vw-100">
<CmpTop @rendermode="InteractiveServer" IpIsLocal=@isIpLocal CurrUser=@currUser EC_ReturnHome=@ReturnHome EC_ForceReset=@ForceReset></CmpTop>
<article class="content p-2">
@Body
</article>
@if (dataLoaded)
{
<NavBottom @rendermode="InteractiveServer" 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>