2022-01-07 21:12:31 +09: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)
|
2022-01-11 18:56:30 +01:00
|
|
|
<style>
|
|
|
|
.btcpay-footer { max-width: 600px; margin-left: auto; margin-right: auto; }
|
|
|
|
.btcpay-footer .flex-xl-row { flex-direction: column !important; }
|
|
|
|
.btcpay-footer .justify-content-xl-start { justify-content: center !important; }
|
|
|
|
.btcpay-footer .mb-xl-0 { margin-bottom: 0.5rem !important; }
|
|
|
|
</style>
|
2019-11-05 17:02:43 +09:00
|
|
|
</head>
|
2022-01-11 18:56:30 +01:00
|
|
|
<body class="d-flex flex-column min-vh-100">
|
|
|
|
<section class="content-wrapper flex-grow-1">
|
2022-01-07 21:12:31 +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>
|
2022-01-11 18:56:30 +01:00
|
|
|
<partial name="_Footer"/>
|
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>
|