This repository has been archived on 2021-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
blazing-workshop/BlazingPizza.Server/Areas/Identity/Pages/_Layout.cshtml

39 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-12-17 15:52:43 +00:00
@using Microsoft.AspNetCore.Hosting
@using Microsoft.AspNetCore.Mvc.ViewEngines
@using BlazingPizza.Client.Shared
@inject IWebHostEnvironment Environment
@inject ICompositeViewEngine Engine
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="~/img/icon-512.png" rel="icon" />
<link href="~/css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="~/css/site.css" rel="stylesheet" asp-append-version="true" />
<title>Lodern Pizza - @ViewData["Title"]</title>
</head>
<body>
<div class="top-bar">
<a class="logo" href="~/">
<img src="~/img/logo.png" />
</a>
<partial name="_LoginPartial" />
</div>
<div class="content">
<div class="main">
@RenderBody()
</div>
</div>
<script src="~/Identity/lib/jquery/dist/jquery.min.js"></script>
<script src="~/Identity/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/Identity/js/site.js" asp-append-version="true"></script>
@RenderSection("Scripts", required: false)
</body>
</html>