Skip to content

Commit

Permalink
Chore: Add comments to League.Demo _Layout.cshtml
Browse files Browse the repository at this point in the history
  • Loading branch information
axunonb committed Aug 26, 2023
1 parent 877e37d commit 4e20f36
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions League.Demo/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@inject ITenantContext TenantContext
@inject IViewLocalizer Localizer
<!DOCTYPE html>
<html lang="@System.Threading.Thread.CurrentThread.CurrentUICulture.TwoLetterISOLanguageName">
<html lang="@Thread.CurrentThread.CurrentUICulture.TwoLetterISOLanguageName">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0" />
Expand All @@ -17,8 +17,8 @@
<meta name="description" content="@ViewData.Description()" />
}
<partial name="@League.Views.ViewNames.Shared._FavIcons" />
<link rel="stylesheet" href="~/lib/bootstrap/bootstrap.min.css" asp-append-version="true"> @* embedded resource *@
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true"/> @* embedded resource *@
<link rel="stylesheet" href="~/lib/bootstrap/bootstrap.min.css" asp-append-version="true"> @* static web asset from League *@
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" /> @* static web asset from League *@
<style type="text/css">
.site-sticky-top {
position: -webkit-sticky;
Expand Down Expand Up @@ -79,9 +79,9 @@
</div>
</footer>
<jl-javascript-logger-definitions request-id="@ViewContext.HttpContext.TraceIdentifier" />
<script src="~/lib/jsnlog/jsnlog.min.js" asp-append-version="true"></script> @* embedded resource *@
<script src="~/lib/bootstrap/bootstrap-all.min.js" asp-append-version="true"></script> @* embedded resource *@
<script src="~/js/site.min.js" asp-append-version="true"></script> @* embedded resource *@
<script src="~/lib/jsnlog/jsnlog.min.js" asp-append-version="true"></script> @* static web asset from League *@
<script src="~/lib/bootstrap/bootstrap-all.min.js" asp-append-version="true"></script> @* static web asset from League *@
<script src="~/js/site.min.js" asp-append-version="true"></script> @* static web asset from League *@
<environment include="Production"><partial name="@League.Views.ViewNames.Shared._GoogleAnalyticsScriptsPartial" /></environment>
@await RenderSectionAsync("scripts", required: false)
</body>
Expand Down

0 comments on commit 4e20f36

Please sign in to comment.