-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path_Layout.cshtml
36 lines (34 loc) · 1.06 KB
/
_Layout.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
<link href="~/lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" asp-append-version="true"/>
<link href="~/lib/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet" asp-append-version="true"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<breadcrumb asp-homepage-title="Home"
asp-homepage-url="@Url.Action("Index", "Home", new { area = "" })"
asp-bootstrap-version="V5"
asp-homepage-glyphicon="bi bi-house">
</breadcrumb>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3">
<partial name="_SideBarMenu"/>
</div>
<div class="col-md-9">
@RenderBody()
</div>
</div>
</div>
@RenderSection("Scripts", false)
</body>
</html>