2021-02-11 11:48:54 +01:00
|
|
|
@inject BTCPayServer.Services.BTCPayServerEnvironment env
|
2021-01-16 14:55:11 -06:00
|
|
|
@{
|
2019-11-05 17:02:43 +09:00
|
|
|
Layout = null;
|
|
|
|
}
|
|
|
|
<!DOCTYPE html>
|
2021-02-11 11:48:54 +01:00
|
|
|
<html lang="en"@(env.IsDeveloping ? " data-devenv" : "")>
|
2019-11-05 17:02:43 +09:00
|
|
|
<head>
|
2021-05-19 04:39:27 +02:00
|
|
|
<partial name="LayoutHead" />
|
|
|
|
@await RenderSectionAsync("PageHeadContent", false)
|
2019-11-05 17:02:43 +09:00
|
|
|
</head>
|
2019-11-08 22:16:20 +01:00
|
|
|
<body>
|
2021-01-16 14:55:11 -06:00
|
|
|
<section class="content-wrapper @(ViewBag.TopSmallMargin != null ? "pt-4" : "")">
|
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>
|
2021-05-19 04:39:27 +02:00
|
|
|
<partial name="LayoutFoot" />
|
|
|
|
@await RenderSectionAsync("PageFootContent", false)
|
2019-11-05 17:02:43 +09:00
|
|
|
</body>
|
|
|
|
</html>
|