mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
25 lines
512 B
Plaintext
25 lines
512 B
Plaintext
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link href="~/Content/bootstrap.css" rel="stylesheet" />
|
|
<link href="~/Content/bootstrap-theme.css" rel="stylesheet" />
|
|
<link href="~/Content/ErrorStyles.css" rel="stylesheet" />
|
|
<title>@ViewBag.Title</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
@if (TempData["message"] != null)
|
|
{
|
|
<div class="alert alert-success">@TempData["message"]</div>
|
|
}
|
|
@RenderBody()
|
|
</div>
|
|
</body>
|
|
</html>
|