2019-11-07 18:20:17 +09:00
|
|
|
@{
|
2019-11-05 17:02:43 +09:00
|
|
|
Layout = null;
|
|
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2019-11-06 12:19:06 +09:00
|
|
|
<partial name="Header" />
|
2019-11-05 17:02:43 +09:00
|
|
|
</head>
|
2019-11-08 22:16:20 +01:00
|
|
|
<body>
|
2019-11-13 18:35:45 -08:00
|
|
|
<section class="content-wrapper">
|
2019-11-05 17:02:43 +09:00
|
|
|
<!-- Dummy navbar-brand, hackish way to keep test AssertNoError passing -->
|
2020-07-02 19:32:56 +02:00
|
|
|
<div class="navbar-brand d-none"></div>
|
2019-11-05 17:02:43 +09:00
|
|
|
<div class="container">
|
2020-07-02 15:44:15 +02:00
|
|
|
@RenderBody()
|
2019-11-05 17:02:43 +09:00
|
|
|
</div>
|
2019-11-06 23:58:04 +09:00
|
|
|
</section>
|
2019-11-05 17:02:43 +09:00
|
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
|
|
</body>
|
|
|
|
</html>
|