Iceshrimp.NET/Iceshrimp.Frontend/Layout/MainLayout.razor
2024-09-13 21:44:31 +02:00

27 lines
No EOL
642 B
Text

@using Microsoft.AspNetCore.Components.Authorization
@using Microsoft.AspNetCore.Components.Sections
@inherits LayoutComponentBase
<div class="page">
<div class="sidebar">
<AuthorizeView>
<Authorized>
<Sidebar/>
</Authorized>
</AuthorizeView>
</div>
<div class="main">
<div class="top-bar">
<SectionOutlet SectionName="top-bar"/>
</div>
@Body
</div>
<div class="widget-panel">
<AuthorizeView>
<Authorized>
<WidgetPanel/>
</Authorized>
</AuthorizeView>
</div>
</div>