37 lines
812 B
Plaintext
37 lines
812 B
Plaintext
@inherits LayoutComponentBase
|
|
|
|
<PageTitle>GPW.CORE.WRKLOG</PageTitle>
|
|
|
|
<div class="page">
|
|
<div class="@sideClass">
|
|
<NavMenu EC_compressUpdated="@UpdateNavDisplay" />
|
|
</div>
|
|
|
|
<main>
|
|
<div class="top-row px-4 auth">
|
|
<AuthorizeView>
|
|
<LoginDisplay />
|
|
</AuthorizeView>
|
|
</div>
|
|
<article class="content pt-1 px-1">
|
|
@Body
|
|
</article>
|
|
<div class="fixed-bottom bottom-row px-2">
|
|
<CmpFooter></CmpFooter>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
@code {
|
|
|
|
protected bool navLarge { get; set; } = true;
|
|
|
|
protected string sideClass { get; set; } = "sidebar";
|
|
|
|
protected void UpdateNavDisplay()
|
|
{
|
|
navLarge = !navLarge;
|
|
sideClass = navLarge ? "sidebar" : "sidebarSmall";
|
|
}
|
|
|
|
} |