app/template/default/Block/Sp/Category/lm_common_content.twig line 1

Open in your IDE?
  1. {% set common_contents = sp_common_contents_map() %}
  2. {% if common_contents.common_header_contents_all is defined and common_contents.common_header_contents_all != '' %}
  3.   {% set current_path = app.request.get('_route') %}
  4.   {% if current_path != 'estimate' %}
  5.   <div class="common-contents common-contents-header common-contents-header-all">
  6.     {{ common_contents.common_header_contents_all | raw }}
  7.   </div>
  8.   {% endif %}
  9. {% endif %}
  10. {% if common_contents.common_header_contents is defined and common_contents.common_header_contents != '' %}
  11.   <div class="common-contents common-contents-header">
  12.     {{ common_contents.common_header_contents | raw }}
  13.   </div>
  14. {% endif %}