custom/static-plugins/CytexTheme/src/Resources/views/storefront/page/product-detail/buy-widget.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@Storefront/storefront/page/product-detail/buy-widget.html.twig" %}
  2. {% block page_product_detail_buy_inner %}
  3.     <div class="product-detail-buy js-magnifier-zoom-image-container">
  4.         {% block page_product_detail_rich_snippets %}
  5.             {{ parent() }}
  6.         {% endblock %}
  7.         {% if not feature('FEATURE_NEXT_16992') %}
  8.             {# @deprecated tag:v6.5.0 tag:)(FEATURE_NEXT_16992) - Block will be removed in v6.5.0 #}
  9.             {% block page_product_detail_not_available %}
  10.             {% endblock %}
  11.         {% endif %}
  12.         {% sw_include "@Storefront/storefront/page/product-detail/cytex-detail-buy-container.html.twig" with {
  13.             product: page.product
  14.         } %}
  15.         {% block page_product_detail_delivery_information_container %}
  16.             {% block page_product_detail_delivery_informations %}
  17.                 {% set wholePhoneNumber =  "cytex-theme.footer.contact.phone"|trans|raw %}
  18.                 {% set phoneNumbers = wholePhoneNumber|split("",2)  %}
  19.                 {% set countryCode = "cytex-theme.footer.contact.phone-country-code"|trans|raw %}
  20.                 <section class="product-detail-delivery-information">
  21.                     {% sw_include '@Storefront/storefront/component/delivery-information.html.twig' %}
  22.                 </section>
  23.                 <section class="product-detail-delivery-information">
  24.                     <img src="{{ asset('icon/cytex/cytex-truck.png', '@CytexTheme') }}" alt="{{ "cytex-theme.product.detail.pricing.delivery"|trans|sw_sanitize }}">
  25.                     <p class="product-detail-delivery-text">{{ "cytex-theme.product.detail.pricing.delivery"|trans|sw_sanitize }}</p>
  26.                 </section>
  27.                 <section class="product-detail-delivery-information">
  28.                     <img src="{{ asset('icon/cytex/cytex-phone.png', '@CytexTheme') }}" alt="{{ "cytex-theme.product.detail.pricing.questions"|trans|sw_sanitize }}">
  29.                     <p class="product-detail-delivery-text">
  30.                         {{ "cytex-theme.product.detail.pricing.questions"|trans|sw_sanitize }}
  31.                         <a href="tel:{{ countryCode }}{{ wholePhoneNumber}}">
  32.                             {{ "cytex-theme.footer.contact.phone-country-code"|trans|raw}}
  33.                             {% for number in phoneNumbers %}
  34.                                 {{ number }}
  35.                             {% endfor %}
  36.                         </a>
  37.                     </p>
  38.                 </section>
  39.             {% endblock %}
  40.         {% endblock %}
  41.     </div>
  42. {% endblock %}