|
| 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"] - ScryfallApi.WebSample</title> |
| 7 | + |
| 8 | + <environment include="Development"> |
| 9 | + <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" /> |
| 10 | + <link rel="stylesheet" href="~/css/site.css" /> |
| 11 | + </environment> |
| 12 | + <environment exclude="Development"> |
| 13 | + <link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css" |
| 14 | + asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css" |
| 15 | + asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" /> |
| 16 | + <link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" /> |
| 17 | + </environment> |
| 18 | +</head> |
| 19 | +<body> |
| 20 | + <nav class="navbar navbar-inverse navbar-fixed-top"> |
| 21 | + <div class="container"> |
| 22 | + <div class="navbar-header"> |
| 23 | + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> |
| 24 | + <span class="sr-only">Toggle navigation</span> |
| 25 | + <span class="icon-bar"></span> |
| 26 | + <span class="icon-bar"></span> |
| 27 | + <span class="icon-bar"></span> |
| 28 | + </button> |
| 29 | + <a asp-page="/Index" class="navbar-brand">ScryfallApi.WebSample</a> |
| 30 | + </div> |
| 31 | + <div class="navbar-collapse collapse"> |
| 32 | + <ul class="nav navbar-nav"> |
| 33 | + <li><a asp-page="/Index">Home</a></li> |
| 34 | + </ul> |
| 35 | + </div> |
| 36 | + </div> |
| 37 | + </nav> |
| 38 | + |
| 39 | + <partial name="_CookieConsentPartial" /> |
| 40 | + |
| 41 | + <div class="container body-content"> |
| 42 | + @RenderBody() |
| 43 | + <hr /> |
| 44 | + <footer> |
| 45 | + <p>© 2018 - ScryfallApi.WebSample</p> |
| 46 | + </footer> |
| 47 | + </div> |
| 48 | + |
| 49 | + <environment include="Development"> |
| 50 | + <script src="~/lib/jquery/dist/jquery.js"></script> |
| 51 | + <script src="~/lib/bootstrap/dist/js/bootstrap.js"></script> |
| 52 | + <script src="~/js/site.js" asp-append-version="true"></script> |
| 53 | + </environment> |
| 54 | + <environment exclude="Development"> |
| 55 | + <script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.3.1.min.js" |
| 56 | + asp-fallback-src="~/lib/jquery/dist/jquery.min.js" |
| 57 | + asp-fallback-test="window.jQuery" |
| 58 | + crossorigin="anonymous" |
| 59 | + integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT"> |
| 60 | + </script> |
| 61 | + <script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js" |
| 62 | + asp-fallback-src="~/lib/bootstrap/dist/js/bootstrap.min.js" |
| 63 | + asp-fallback-test="window.jQuery && window.jQuery.fn && window.jQuery.fn.modal" |
| 64 | + crossorigin="anonymous" |
| 65 | + integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"> |
| 66 | + </script> |
| 67 | + <script src="~/js/site.min.js" asp-append-version="true"></script> |
| 68 | + </environment> |
| 69 | + |
| 70 | + @RenderSection("Scripts", required: false) |
| 71 | +</body> |
| 72 | +</html> |
0 commit comments