Skip to content

Instantly share code, notes, and snippets.

@ismcagdas
Created January 30, 2018 20:28
Show Gist options
  • Save ismcagdas/6144be027b157ca6310e43cc68744517 to your computer and use it in GitHub Desktop.
Save ismcagdas/6144be027b157ca6310e43cc68744517 to your computer and use it in GitHub Desktop.
Acme.HeroShop - _Layout.cshtml
<!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