Created
January 30, 2018 20:28
-
-
Save ismcagdas/6144be027b157ca6310e43cc68744517 to your computer and use it in GitHub Desktop.
Acme.HeroShop - _Layout.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<base href="/" /> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>@ViewData["Title"]</title> | |
@Html.Raw(ViewData["Meta"]) | |
@Html.Raw(ViewData["Links"]) | |
@Html.Raw(ViewData["Styles"]) | |
<link href="~/HeroApp/dist-server/styles.bundle.css" rel="stylesheet" asp-append-version="true" /> | |
</head> | |
<body> | |
@RenderBody() | |
@Html.Raw(ViewData["TransferData"]) | |
@RenderSection("scripts", required: false) | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment