28 lines
683 B
Plaintext
28 lines
683 B
Plaintext
@inherits LayoutComponentBase
|
|
@using StockMan.CORE.Components;
|
|
|
|
<PageTitle>StockMan.CORE</PageTitle>
|
|
|
|
<div class="page">
|
|
<div class="nav" id="navMain">
|
|
@if (!string.IsNullOrEmpty(userName))
|
|
{
|
|
<NewNavMenu NavMenuLinks="@navMenuLinks" Title="STOCK MAN" User="@userName"></NewNavMenu>
|
|
}
|
|
</div>
|
|
|
|
<main>
|
|
@*<div class="top-row px-4">
|
|
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
|
|
</div>*@
|
|
|
|
<article class="content px-3 mb-3">
|
|
@Body
|
|
</article>
|
|
</main>
|
|
<div class="fixed-bottom bottom-row px-2 bg-dark">
|
|
<CmpFooter></CmpFooter>
|
|
</div>
|
|
|
|
</div>
|