mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
5b929e85cf
Some cleanups related to the recent changes arount the LayoutSimple. We don't use the font montserrat anymore and the col-head class is also obsolete. Moved the remaining styles to our site.css
20 lines
444 B
Plaintext
20 lines
444 B
Plaintext
@{
|
|
Layout = null;
|
|
}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<partial name="Header" />
|
|
</head>
|
|
<body>
|
|
<section class="content-wrapper">
|
|
<!-- Dummy navbar-brand, hackish way to keep test AssertNoError passing -->
|
|
<div class="navbar-brand d-none"></div>
|
|
<div class="container">
|
|
@RenderBody()
|
|
</div>
|
|
</section>
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
</body>
|
|
</html>
|