21 lines
573 B
Plaintext
21 lines
573 B
Plaintext
@using MP.Prog.Components
|
|
@using System.Security.Claims
|
|
@*@using Microsoft.AspNetCore.Components.Authorization*@
|
|
@using MP.Prog.Data
|
|
|
|
@inject MessageService AppMessages
|
|
@*@inject AuthenticationStateProvider AuthenticationStateProvider*@
|
|
|
|
<div class="d-flex justify-content-between pt-3">
|
|
<div class="px-2 d-none d-lg-block text-center h4 text-truncate">
|
|
<span class="@PageIcon" aria-hidden="true"></span> @PageName
|
|
</div>
|
|
<div class="px-2 text-end">
|
|
@if (ShowSearch)
|
|
{
|
|
<SearchMod></SearchMod>
|
|
}
|
|
</div>
|
|
</div>
|
|
|