Merge pull request #37005 from KerollesFathy/fix-hide-navbar-footer-on-webform

fix(webform): hide navbar/footer settings
This commit is contained in:
Ejaaz Khan 2026-02-14 21:01:51 +05:30 committed by GitHub
commit 385be90daa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,8 +4,17 @@
{% include "templates/includes/meta_block.html" %}
{% endblock %}
{% if hide_navbar %}{% block navbar %}{% endblock %}{% endif %}
{% if hide_footer %}{% block footer %}{% endblock %}{% endif %}
{% block navbar %}
{% if not hide_navbar %}
{% include "templates/includes/navbar/navbar.html" %}
{% endif %}
{% endblock %}
{% block footer %}
{% if not hide_footer %}
{% include "templates/includes/footer/footer.html" %}
{% endif %}
{% endblock %}
{% block breadcrumbs %}{% endblock %}