templates/Renderlet/contentTeaser.html.twig line 1

Open in your IDE?
  1. <section class="content-teaser content-teaser--{{ orientation|default('square') }}  stretch-link teaser-animation">
  2.     {% if isYoungStyria|default(false) %}
  3.         <img class="demi-infrastructure-teaser-grid__young-styria-logo" src="/static/img/young-styria/young-styria.jpg">
  4.     {% endif %}
  5.     <figure class="content-teaser__embed--{{ orientation|default('square') }} embed-responsive mb-0">
  6.         {% if image|default(false) %}
  7.             {% set description = getImageDescription(image) %}
  8.             {{ image.thumbnail('content-teaser--' ~ orientation|default('square')).html({
  9.                 imgAttributes: {
  10.                     class: 'js-lazy-img embed-responsive-item teaser-animation__img'
  11.                 },
  12.                 lowQualityPlaceholder: true,
  13.                 title: description|default(''),
  14.                 alt: description|default(''),
  15.             })|raw }}
  16.             {% do jsConfig().add('lazyImg', true) %}
  17.         {% endif %}
  18. {#        {% if description %}#}
  19. {#            <figcaption class="content-teaser__caption">#}
  20. {#                {{ description }}#}
  21. {#            </figcaption>#}
  22. {#        {% endif %}#}
  23.     </figure>
  24.     <div class="content-teaser__content">
  25.         <div>
  26.             {% if badgeText|default(false) %}
  27.                 <div class="content-teaser__badge">
  28.                     {{ badgeText }}
  29.                 </div>
  30.             {% endif %}
  31.             {% if subtitle|default(false) %}
  32.                 <div class="content-teaser__sub-title">
  33.                     {{ subtitle }}
  34.                 </div>
  35.             {% endif %}
  36.             {% if href|default(false) %}
  37.             <h3 class="content-teaser__title h5">
  38.                 <a href="{{ href }}" class="stretch-link__link">
  39.                     {{ title }}
  40.                 </a>
  41.             </h3>
  42.             {% endif %}
  43.         </div>
  44.     </div>
  45. </section>