templates/layouts/section/hero.html.twig line 1

Open in your IDE?
  1. <!-- Hero section -->
  2. <div class="container-fluid d-flex mt-5 bg-light" id="section-hero">
  3.     <div class="row justify-content-center align-items-center">
  4.         <div class="col-12 col-md-6">
  5.             {% for title in information.titles %}
  6.                 <h1 class="title display-4 fw-bold">{{ title.text }}</h1>
  7.             {% endfor %}
  8.             <p class="my-4">
  9.                 {#                    Je suis l'architecte de votre succès numérique, offrant un mélange de flexibilité, d'efficacité et de solutions web innovantes adaptées à vos besoins.#}
  10.                 {{ information.introduction | raw }}
  11.             </p>
  12.             <button class="btn btn-primary px-4">
  13.                 Voir plus
  14.             </button>
  15.         </div>
  16.         <div class="d-none d-md-block col-md-4 d-flex justify-content-end">
  17.             <img class="py-5" src="{{ information.imageName ? vich_uploader_asset(information) : asset('build/img/header-hero.png') }}" width="528" alt="header hero">
  18.         </div>
  19.     </div>
  20. </div>
  21. <!-- End of Hero section -->