{% set common_contents = sp_common_contents_map() %}
{% if common_contents.common_header_contents_all is defined and common_contents.common_header_contents_all != '' %}
{% set current_path = app.request.get('_route') %}
{% if current_path != 'estimate' %}
<div class="common-contents common-contents-header common-contents-header-all">
{{ common_contents.common_header_contents_all | raw }}
</div>
{% endif %}
{% endif %}
{% if common_contents.common_header_contents is defined and common_contents.common_header_contents != '' %}
<div class="common-contents common-contents-header">
{{ common_contents.common_header_contents | raw }}
</div>
{% endif %}