mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
29 lines
831 B
Plaintext
29 lines
831 B
Plaintext
@inject BTCPayServer.Services.BTCPayServerEnvironment env
|
|
@{
|
|
Layout = null;
|
|
}
|
|
<!DOCTYPE html>
|
|
<html lang="en"@(env.IsDeveloping ? " data-devenv" : "")>
|
|
<head>
|
|
<partial name="LayoutHead" />
|
|
@await RenderSectionAsync("PageHeadContent", false)
|
|
<style>
|
|
.btcpay-footer .flex-xl-row { flex-direction: column !important; }
|
|
.btcpay-footer .justify-content-xl-start { justify-content: center !important; }
|
|
</style>
|
|
</head>
|
|
<body class="d-flex flex-column min-vh-100">
|
|
<section class="content-wrapper flex-grow-1">
|
|
<div class="container">
|
|
@RenderBody()
|
|
</div>
|
|
</section>
|
|
@if (ViewData["ShowFooter"] is not false)
|
|
{
|
|
<partial name="_Footer"/>
|
|
}
|
|
<partial name="LayoutFoot" />
|
|
@await RenderSectionAsync("PageFootContent", false)
|
|
</body>
|
|
</html>
|