34 lines
819 B
Plaintext
34 lines
819 B
Plaintext
@using Blazored.LocalStorage;
|
|
@using MP.Data.DTO;
|
|
@inherits LayoutComponentBase
|
|
|
|
<PageTitle>MP.INVE</PageTitle>
|
|
|
|
<div class="page">
|
|
<div class="@sideClass">
|
|
@if ((Height != 480) && (Width != 320))
|
|
{
|
|
<NavMenu EC_compressUpdated="@UpdateNavDisplay" />
|
|
}
|
|
</div>
|
|
|
|
<main>
|
|
<div class="top-row px-4 justify-content-between">
|
|
@if ((Height != 480) && (Width != 320))
|
|
{
|
|
<CmpTop></CmpTop>
|
|
}
|
|
</div>
|
|
<article class="content pt-0 m-2">
|
|
@if (userName != "0" || NavManager.Uri.Contains("OperatoreLogin"))
|
|
{
|
|
@Body
|
|
}
|
|
</article>
|
|
<div class="fixed-bottom bottom-row px-2">
|
|
<CmpFooter></CmpFooter>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|