@{ Layout = "_LayoutSimple"; ViewBag.ShowTitle ??= true; ViewBag.ShowLeadText ??= false; } @section PageHeadContent { @await RenderSectionAsync("PageHeadContent", false) } @section PageFootContent { @await RenderSectionAsync("PageFootContent", false) }

Welcome to your BTCPay Server

@if (ViewBag.ShowLeadText) {

A self-hosted, open-source bitcoin payment processor. It is secure, private, censorship-resistant and free.

}
@if (ViewBag.ShowTitle) {

@ViewData["Title"]

} @RenderBody()