mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
19 lines
465 B
Plaintext
19 lines
465 B
Plaintext
@inherits LayoutComponentBase
|
|
@layout ApplicationLayout
|
|
|
|
<PageTitle>SharpRSS</PageTitle>
|
|
|
|
<MudDrawer @bind-Open="@ApplicationLayout.DrawerOpen" ClipMode="DrawerClipMode.Always">
|
|
<MudNavMenu>
|
|
<MudNavLink Match="NavLinkMatch.All" Icon="@Icons.Material.Filled.Home" Href="/">Home</MudNavLink>
|
|
</MudNavMenu>
|
|
<MudSpacer/>
|
|
</MudDrawer>
|
|
@Body
|
|
|
|
@code
|
|
{
|
|
[CascadingParameter]
|
|
public ApplicationLayout ApplicationLayout { get; set; } = null!;
|
|
}
|