custom/plugins/FroshPlatformThumbnailProcessor/src/Resources/views/storefront/component/product/card/box.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/box.html.twig' %}
  2. {% block component_product_box_include %}
  3.     {% if shopware.config.FroshPlatformThumbnailProcessor.config.FixListingThumbnailSizes %}
  4.         {# Default is 200px #}
  5.         {% set sizes = {
  6.             'default': '200px'
  7.         } %}
  8.         {# We overwrite definition for layout image #}
  9.         {% if layout == 'image' %}
  10.             {% set sizes = {
  11.                 'xs': '332px',
  12.                 'sm': '295px',
  13.                 'md': '332px',
  14.                 'lg': '319px',
  15.                 'xl': '274px',
  16.             } %}
  17.         {% endif %}
  18.     {% endif %}
  19.     {{ parent() }}
  20. {% endblock %}