Can hide the footer of LayoutSimple

This commit is contained in:
nicolas.dorier 2024-05-17 09:27:46 +09:00
parent 900c5f7976
commit 8331d1019f
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -18,7 +18,10 @@
@RenderBody()
</div>
</section>
<partial name="_Footer"/>
@if (ViewData["ShowFooter"] is not false)
{
<partial name="_Footer"/>
}
<partial name="LayoutFoot" />
@await RenderSectionAsync("PageFootContent", false)
</body>