48 lines
2.0 KiB
Plaintext
48 lines
2.0 KiB
Plaintext
@inject BlogConfiguration config
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<environment names="Production">
|
|
<partial name="Gtm" />
|
|
</environment>
|
|
<meta name="author" content="Tommy "TerribleDev" Parnell" />
|
|
<meta name="theme-color" content="#4A4A4A" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="alternate" type="application/atom+xml" async title="RSS" href="/rss.xml">
|
|
<link rel="manifest" href="~/manifest.json" async asp-append-version="true">
|
|
<link asp-append-version="true" rel="icon" async href="~/favicon.ico" />
|
|
<title>@ViewData["Title"] - @config.Title</title>
|
|
<environment names="Development">
|
|
<inline-style href="css/site.css"></inline-style>
|
|
</environment>
|
|
<environment names="Production">
|
|
<inline-style href="css/site.min.css"></inline-style>
|
|
</environment>
|
|
@RenderSection("Head", false)
|
|
</head>
|
|
<body>
|
|
<partial name="Nav" />
|
|
<header class="header">
|
|
<svg aria-label="Open Menu" id="menuBtn" role="button" xmlns="http://www.w3.org/2000/svg" width="32" height="32"><path d="M4 10h24c1.104 0 2-.896 2-2s-.896-2-2-2H4c-1.104 0-2 .896-2 2s.896 2 2 2zm24 4H4c-1.104 0-2 .896-2 2s.896 2 2 2h24c1.104 0 2-.896 2-2s-.896-2-2-2zm0 8H4c-1.104 0-2 .896-2 2s.896 2 2 2h24c1.104 0 2-.896 2-2s-.896-2-2-2z" /></svg>
|
|
<div class="headerCallout"><a href="/" class="link-unstyled ">@config.Title</a></div>
|
|
</header>
|
|
@{
|
|
var bodyBump = ViewData["HideNav"] == null ? "bodyWithNav": "";
|
|
}
|
|
<main role="main" class="@bodyBump headerBump">
|
|
<div class="main-content-wrap">
|
|
@RenderBody()
|
|
</div>
|
|
</main>
|
|
@RenderSection("Scripts", required: false)
|
|
<environment names="Development">
|
|
<script asp-append-version="true" src="~/js/swi.js" async></script>
|
|
</environment>
|
|
<environment names="Production">
|
|
<script asp-append-version="true" src="~/js/site.min.js" async></script>
|
|
</environment>
|
|
</body>
|
|
</html>
|