about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/MainLayout.razor
blob: 4aa01c65a0474a2e989b4c27230f64cdfcd2e475 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@inherits LayoutComponentBase

<div class="page">
    <div class="sidebar">
        <NavMenu/>
    </div>

    <main>
        <div class="top-row px-4">
            <a href="https://git.rory.gay/MatrixRoomUtils.git/" target="_blank">Git</a>
            <a href="https://matrix.to/#/%23mru%3Arory.gay?via=rory.gay&via=matrix.org&via=feline.support" target="_blank">Matrix</a>
        </div>

        <article class="content px-4">
            @Body
        </article>
    </main>
</div>

@code {


}