custom/plugins/theme/src/Resources/views/storefront/component/s360-usp-box-dynamic-row.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/s360-usp-box-dynamic-row.html.twig' %}
  2. {% block s360_usp_element_outer %}
  3.     {% if item.col and item.mediaId %}
  4.         {% set mediaCollection = searchMedia([item.mediaId], context.context) %}
  5.         {% set mediaObject = mediaCollection.get(item.mediaId) %}
  6.         <div class="col-12 col-md-6 col-lg-{{ item.col }} s360-usp-col">
  7.             {% if (item.linkType == 'category' and item.categoryId) or (item.linkType == 'url' and item.linkUrl) %}
  8.                 <a href="{% if item.linkType == 'category' and item.categoryId %}
  9.                     {{ seoUrl('frontend.navigation.page', { navigationId: item.categoryId }) }}
  10.                     {% elseif item.linkType == 'url' and item.linkUrl %}
  11.                         {{ item.linkUrl }}
  12.                     {% endif %}">
  13.             {% endif %}
  14.             {% set color = element.config.textColor.value %}
  15.             {% block s360_usp_element_inner %}
  16.                 <img class="s360-dynamic-usp__image" src="{{ mediaObject.url }}"
  17.                     alt="{% if mediaObject.alt %}mediaObject.alt {% else %}Kategoriebild{% endif %}">
  18.                 
  19.                 {% if item.title or item.subtitle or item.buttonText %}
  20.                     <div class="s360-dynamic-usp__text">
  21.                         {% if item.title %}
  22.                             <h4 class="s360-dynamic-usp__title{% if item.title == 'Sale' or item.title == 'Sales' %} is-sale{% endif %}"{% if color %} style="color: {{color}}"{% endif %}>
  23.                                 {{ item.title }}
  24.                             </h4>
  25.                         {% endif %}
  26.                         {% if item.subtitle %}
  27.                             <p class="s360-dynamic-usp__subtitle"{% if color %} style="color: {{color}}"{% endif %}>
  28.                                 {{ item.subtitle }}
  29.                             </p>
  30.                         {% endif %}
  31.                         {% if item.buttonText %}
  32.                             <button class="btn btn-primary mt-2 mt-lg-4 s360-dynamic-usp__button">
  33.                                 {{ item.buttonText }}
  34.                             </button>
  35.                         {% endif %}
  36.                     </div>
  37.                 {% endif %}
  38.             {% endblock %}
  39.             {% if item.categoryId or item.linkUrl %}
  40.             </a>
  41.             {% endif %}
  42.         </div>
  43.     {% endif %}
  44. {% endblock %}