27 lines
607 B
Plaintext
27 lines
607 B
Plaintext
@inherits LayoutComponentBase
|
|
|
|
<PageTitle>MP.SPEC</PageTitle>
|
|
|
|
<div class="page">
|
|
<div class="sidebar">
|
|
<NavMenu />
|
|
</div>
|
|
|
|
<main>
|
|
<div class="top-row px-4 justify-content-between">
|
|
<CascadingValue Value="@ShowSearch" Name="ShowSearch">
|
|
<CmpTop></CmpTop>
|
|
</CascadingValue>
|
|
</div>
|
|
<article class="content pt-0 m-2">
|
|
@Body
|
|
</article>
|
|
<div class="fixed-bottom bottom-row px-2">
|
|
<CmpFooter></CmpFooter>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
@code {
|
|
private bool ShowSearch = false;
|
|
} |