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

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

    <main>
        <div class="top-row px-4">
            <PortableDevTools></PortableDevTools>
            <a href="https://cgit.rory.gay/matrix/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>