templates/snippets/teaser/product-category-teaser.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     {{ include('layout/includes/css.html.twig') }}
  3. {% endif %}
  4. <article class="product-category-teaser stretch-link shadow border-radius-8">
  5.     <div class="product-category-teaser__img-container">
  6.         <div class="{{ not editmode ? 'ratio ratio-4x3' }}">
  7.             {{ pimcore_image('category-teaser-img', {
  8.                 thumbnail: 'product-category',
  9.                 imgAttributes: {
  10.                     class: 'ratio-item js-lazy-img product-category__img',
  11.                 },
  12.                 lowQualityPlaceholder: true,
  13.             })|raw }}
  14.         </div>
  15.     </div>
  16.     <div class="product-category-teaser__content">
  17.         <h3 class="category-teaser__link">
  18.             {{ pimcore_link('category-teaser-link', {
  19.                 class: 'stretch-link__link d-flex align-items-center justify-content-between w-100',
  20.                 textPrefix: '<span class="text-gradient-primary category-teaser__category">',
  21.                 textSuffix: '</span><span aria-hidden="true" class="icon icon-arrow"></span>',
  22.             }) }}
  23.         </h3>
  24.         {% if editmode or not pimcore_wysiwyg('category-teaser-text').isEmpty() %}
  25.             <div class="category-teaser__info">{{ pimcore_wysiwyg('category-teaser-text')|raw }}</div>
  26.         {% endif %}
  27.     </div>
  28. </article>