+ {# Show banner on all pages except /newsroom paths #}
+ {% set show_banner = true %}
+ {% if current_path is defined and current_path is starting_with("/newsroom") %}
+ {% set show_banner = false %}
+ {% endif %}
+ {% if show_banner %}
+ {% include "partials/banner.html" %}
+ {% endif %}
{% block content %}{% endblock %}
+
+
+
+
{% include "partials/footer.html" %}