Fixes #11087: Fix background color of bottom banner content

This commit is contained in:
Jeremy Stretch
2022-12-06 15:40:59 -05:00
parent d4d8d00d01
commit d2d60c0607
2 changed files with 8 additions and 6 deletions

View File

@@ -103,14 +103,14 @@ Blocks:
{% block content %}{% endblock %}
</div>
{% endblock %}
{# Bottom banner #}
{% if config.BANNER_BOTTOM %}
<div class="text-center mx-3">
{{ config.BANNER_BOTTOM|safe }}
</div>
{% endif %}
</div>
{% if config.BANNER_BOTTOM %}
<div class="text-center mx-3">
{{ config.BANNER_BOTTOM|safe }}
</div>
{% endif %}
{# BS5 pop-up modals #}
{% block modals %}{% endblock %}