forked from dotnet/samples
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainLayout.razor
More file actions
24 lines (22 loc) · 881 Bytes
/
MainLayout.razor
File metadata and controls
24 lines (22 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@inherits LayoutComponentBase
<div class="page d-flex flex-column vh-100">
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<i class="bi bi-check2-square me-2"></i>
Journaled Todo Lists
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarContent" aria-controls="navbarContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<NavBar />
</div>
</nav>
</header>
<main class="container mt-4 flex-grow-1 overflow-auto">
@Body
</main>
</div>