btcpayserver/BTCPayServer/Views/Shared/_LayoutSimple.cshtml
Dennis Reimann 5b929e85cf
Simple layout cleanups
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
2020-08-02 14:33:20 +02:00

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>