26 lines
499 B
Plaintext
26 lines
499 B
Plaintext
<!DOCTYPE html>
|
|
@{
|
|
if (ViewData.TryGetValue("ParentLayout", out var parentLayout) && parentLayout != null)
|
|
{
|
|
Layout = parentLayout.ToString();
|
|
}
|
|
else
|
|
{
|
|
Layout = "/Pages/Shared/_Layout.cshtml";
|
|
}
|
|
}
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>@ViewBag.Title</title>
|
|
</head>
|
|
<body>
|
|
<div class="row">
|
|
@RenderBody()
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
@section Scripts {
|
|
@RenderSection("Scripts", required: false)
|
|
} |