summaryrefslogtreecommitdiff
path: root/MainLayout.razor
blob: b34bf6420ec1c6dee9d2a449e2975dd04963ac16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@inherits LayoutComponentBase

<link href="@(nameof(HyperBooru)).styles.css" rel="stylesheet" />

<main>
    <div id="navbar">
        <a href="/">Home</a>
        <a href="/TagDefinitions">Tags</a>
        <input type="text" placeholder="Search"/>
    </div>
    @* <div id="content" style="overflow-y:@(ViewBag.ContentScroll ? "auto" : "hidden");padding:@(ViewBag.ContentMargin ?? "0");"> *@
    <div id="content">
        @Body
    </div>
</main>