From 8331d1019fd6867ee22480708f72174a5b002669 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Fri, 17 May 2024 09:27:46 +0900 Subject: [PATCH] Can hide the footer of LayoutSimple --- BTCPayServer/Views/Shared/_LayoutSimple.cshtml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BTCPayServer/Views/Shared/_LayoutSimple.cshtml b/BTCPayServer/Views/Shared/_LayoutSimple.cshtml index 8e30939bf..2a2517cee 100644 --- a/BTCPayServer/Views/Shared/_LayoutSimple.cshtml +++ b/BTCPayServer/Views/Shared/_LayoutSimple.cshtml @@ -18,7 +18,10 @@ @RenderBody() - + @if (ViewData["ShowFooter"] is not false) + { + + } @await RenderSectionAsync("PageFootContent", false)