templates/main/site/views/Partials/Ingredients/ingredientsHero.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'Site' %}
  2. <div class="hero-background-image">
  3.     <picture>
  4.         <source srcset="{{ asset('/images/main/hero-ingredients.webp') }} 1x, {{ asset('/images/main/hero-ingredients@2x.webp') }} 1.5x" type="image/webp">
  5.         <source srcset="{{ asset('/images/main/hero-ingredients.jpg') }} 1x, {{ asset('/images/main/hero-ingredients@2x.jpg') }} 1.5x" type="image/jpg">
  6.         <img width="1280" height="338" loading="lazy" class="hero-background-image__image wow fadeIn" src="{{ asset('/images/main/hero-ingredients.jpg') }}" alt="">
  7.     </picture>
  8.     <div class="hero-background-image__body">
  9.         <div class="container-fluid">
  10.             <h1 class="hero-background-image__title mb-0 wow fadeInBottom">
  11.                 {{ 'site.ingredients.title'|trans }}
  12.             </h1>
  13.         </div>
  14.     </div>
  15. </div>