1<!DOCTYPE html>
2<html>
3<head>
4    <meta charset="utf-8" />
5    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6    <title>@ViewData["Title"] - Identity.DefaultUI.WebSite</title>
7
8    <environment include="Development">
9        <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
10    </environment>
11    <environment exclude="Development">
12        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"
13              asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
14              asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
15    </environment>
16    <link rel="stylesheet" href="~/css/site.css" />
17</head>
18<body>
19    <header>
20        <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
21            <div class="container">
22                <a class="navbar-brand" href="~/">Identity.DefaultUI.WebSite</a>
23                <button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-controls="navbarSupportedContent"
24                        aria-expanded="false" aria-label="Toggle navigation">
25                    <span class="navbar-toggler-icon"></span>
26                </button>
27                <div class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse">
28                    <partial name="_LoginPartial" />
29                    <ul class="navbar-nav flex-grow-1">
30                        <li class="nav-item">
31                            <a class="nav-link text-dark" asp-area="" asp-page="Index">Page1</a>
32                        </li>
33                        <li class="nav-item">
34                            <a class="nav-link text-dark" asp-area="" asp-page="Index">Page2</a>
35                        </li>
36                    </ul>
37                </div>
38            </div>
39        </nav>
40    </header>
41
42    <div class="container">
43        <partial name="_CookieConsentPartial" />
44        <main role="main" class="pb-1">
45            @RenderBody()
46        </main>
47    </div>
48    <footer class="footer border-top pl-3 text-muted">
49        <div class="container">
50            &copy; @DateTime.Now.Year - Identity.DefaultUI.WebSite - <a asp-area="" asp-page="Privacy">Privacy</a>
51        </div>
52    </footer>
53
54    <environment include="Development">
55        <script src="~/lib/jquery/dist/jquery.js"></script>
56        <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.js"></script>
57    </environment>
58    <environment exclude="Development">
59        <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
60                asp-fallback-src="~/lib/jquery/dist/jquery.min.js"
61                asp-fallback-test="window.jQuery"
62                crossorigin="anonymous"
63                integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=">
64        </script>
65        <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.bundle.min.js"
66                asp-fallback-src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"
67                asp-fallback-test="window.jQuery && window.jQuery.fn && window.jQuery.fn.modal"
68                crossorigin="anonymous"
69                integrity="sha256-E/V4cWE4qvAeO5MOhjtGtqDzPndRO1LBk8lJ/PR7CA4=">
70        </script>
71    </environment>
72    <script src="~/js/site.js" asp-append-version="true"></script>
73
74    @RenderSection("Scripts", required: false)
75</body>
76</html>
77