custom/plugins/SmsBecoTechnicTheme/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_head %}
  3.     {% if (config('GbmedForm') is not null) %}
  4.         {% sw_include '@GbmedForm/storefront/layout/meta.html.twig' %}
  5.     {% else %}
  6.         {{ parent() }}
  7.     {% endif %}
  8. {% endblock %}
  9. {% block base_header_inner %}
  10.     {% block base_header_inner_top_information %}
  11.         <div class="top-information d-none d-lg-block">
  12.             {% block base_header_inner_top_information_text %}
  13.                 <span class="text-center">{{ 'smsBecoTechnicTheme.index.topInformationText'|trans }}</span>
  14.             {% endblock %}
  15.         </div>
  16.         {% if context.customer is not null and context.customer.customerNumber|length == 5 %}
  17.             <div class="top-information-incentive">
  18.                 {% block base_header_inner_top_information_incentive_text %}
  19.                     <span class="text-center">{{ 'smsBecoTechnicTheme.index.topInformationTextIncentive'|trans }}</span>
  20.                 {% endblock %}
  21.             </div>
  22.         {% endif %}
  23.         <div class="alert-success" role="alert" id="fixedAddItemToCartAlert">
  24.             <span>{{ 'smsBecoTechnicTheme.index.productAddedtoCart'|trans }}</span>
  25.             {% sw_icon 'x' style {'class': 'add-item-to-cart-alert-icon'} %}
  26.         </div>
  27.     {% endblock %}
  28.     {{ parent() }}
  29. {% endblock %}
  30. {% block base_main %}
  31. {#    <div class="d-none d-lg-block fixedHelpSidebarWrapper">#}
  32. {#        <div class="d-none d-lg-flex fixedHelpSidebarButton">#}
  33. {#            #}{# <img src="{{ asset('assets/icons/chat_icon.svg', '@SmsBecoTechnicTheme') }}" class="help-side-chat"/> #}
  34. {#            <span#}
  35. {#                class="text-center help-side-text">{{ 'smsBecoTechnicTheme.index.fixedHelpSidebar.title'|trans|sw_sanitize }}</span>#}
  36. {#        </div>#}
  37. {#        <div class="fixedHelpSidebarElement">#}
  38. {#            <div class="fixed-help-sidebar-element-text-wrapper">#}
  39. {#                <p><b>{{ 'smsBecoTechnicTheme.index.fixedHelpSidebar.textContactTitle'|trans|sw_sanitize }}</b></p>#}
  40. {#                <p>{{ 'smsBecoTechnicTheme.index.fixedHelpSidebar.textContactAddress'|trans|sw_sanitize }}</p>#}
  41. {#                <p>{{ 'smsBecoTechnicTheme.index.fixedHelpSidebar.textContact'|trans|sw_sanitize }}</p>#}
  42. {#                <p class="fixed-help-sidebar-element-text-appendix">{{ 'smsBecoTechnicTheme.index.fixedHelpSidebar.textAppendix'|trans |sw_sanitize }}</p>#}
  43. {#            </div>#}
  44. {#        </div>#}
  45. {#    </div>#}
  46.     {{ parent() }}
  47. {% endblock %}