src/Modules/Shortcuts/Hooks/ShortcutsProjects/hook.html.twig line 1

Open in your IDE?
  1. {% if shortcutsProjects is not empty %}
  2.     <section class="hook_shortcuts_projects">
  3.         <h3 class="title animate__animated mb-4" data-animation="animate__fadeIn" invisible>Captusite, les projets</h3>
  4.         <strong>L’histoire Captusite, c’est vous qui l’écrivez !</strong>
  5.         <p class="mb-4">Toutes les solutions web et les outils numériques sont développés grâce à vos demandes, et + elles sont complexes, + nos développeurs sont heureux !</p>
  6.         <div class="row">
  7.             {% for shortcut in shortcutsProjects %}
  8.                 <div class="col-xl-4 col-md-6">
  9.                     <a class="item_bloc animate__animated" href="{{ shortcut.link }}" data-animation="animate__fadeIn" invisible>
  10.                         <img class="img-fluid img-item" src="{{ shortcut.image }}" data-src="{{ shortcut.image }}" alt="Image raccourci {{ shortcut.name }}" width="510" height="382" data-method="fill" data-quality="80" />
  11.                         <div class="caption">
  12.                             <h3 class="item_caption_title">{{ shortcut.name }}</h3>
  13.                             <button type="button" class="btn btn-white">Découvrir</button>
  14.                         </div>
  15.                         <div class="overlay"></div>
  16.                     </a>
  17.                 </div>
  18.             {% endfor %}
  19.         </div>
  20.     </section>
  21. {% else %}
  22.     <div class="alert alert-warning">Aucun résultat n'a pu être récupéré</div>
  23. {% endif %}