templates/home/about_us.html.twig line 1

Open in your IDE?
  1. <!-- SHAPE -->
  2. <div class="position-relative mt-10">
  3.     <div class="shape shape-bottom shape-fluid-x text-warning">
  4.         <svg viewBox="0 0 2880 56" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M720 28H0v28h2880V28h-720S1874 0 1440 0 720 28 720 28z" fill="currentColor"/></svg>      </div>
  5. </div>
  6. <section class="pt-10 pt-md-5">
  7.     <div class="container-fluid">
  8.         <div class="row justify-content-center">
  9.             <div class="col-12 col-md-10 col-lg-8 text-center">
  10.                 <!-- Heading -->
  11.                 <!-- Text -->
  12.                 <div class="fs-lg text-muted mb-5 mb-md-5">
  13.                     {{ aboutUs.description|raw }}
  14.                 </div>
  15.                 <h2>
  16.                     TLDI est spécialisée dans: <span class="text-warning" data-typed='{"strings": ["L’affrètement et organisation des transports", "Fret aérien et maritime", "Négoces internationaux,","Prestations de services logistiques et Télécoms","Téléphonie, achat et vente de tout produit non réglementé", "Import et Export","Intermédiation transfert d’argent"]}'> </span>
  17.                 </h2>
  18.             </div>
  19.         </div> <!-- / .row -->
  20.         <div class="row">
  21.             <div class="col-12">
  22.                 <!-- Card -->
  23.                 <div class="card card-row shadow-light-lg mb-6">
  24.                     <div class="row gx-0">
  25.                         <div class="col-12 col-md-6">
  26.                             <!-- Slider -->
  27.                             <div class="card-img-slider" data-flickity='{"autoPlay": true, "fade": true, "imagesLoaded": true,"cellAlign": "center", "pageDots": false, "prevNextButtons": false, "asNavFor": "#blogSlider", "draggable": false}'>
  28.                                 {% if contentChildren(1) is not null %}
  29.                                 {% for child in contentChildren(1) %}
  30.                                 <a class="card-img-start w-100 bg-cover" style="background-image: url({{ child.image }});background-size:cover" href="#!">
  31.                                     <!-- Image (placeholder) -->
  32.                                     <img src="{{ child.image }}" alt="..." class="img-fluid d-md-none invisible">
  33.                                 </a>
  34.                                 {% endfor %}
  35.                                 {% endif %}
  36.                             </div>
  37.                             <!-- Shape -->
  38.                             <div class="shape shape-end shape-fluid-y text-white d-none d-md-block">
  39.                                 <svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M116 0H51v172C76 384 0 517 0 517v173h116V0z" fill="currentColor"/></svg>                  </div>
  40.                         </div>
  41.                         <div class="col-12 col-md-6 position-md-static">
  42.                             <!-- Slider -->
  43.                             <div class="position-md-static" data-flickity='{"wrapAround": true, "pageDots": false, "adaptiveHeight": true}' id="blogSlider">
  44.                                 {% if contentChildren(1) is not null %}
  45.                                 {% for child in contentChildren(1) %}
  46.                                 <div class="w-100">
  47.                                     <!-- Body -->
  48.                                     <div class="card-body">
  49.                                         <blockquote class="blockquote text-left mb-0">
  50.                                             <!-- Brand -->
  51.                                             <div class="row justify-content-center mb-5 mb-md-7">
  52.                                                 <div class="col-12 col-sm-12 col-md-12 col-lg-12">
  53.                                                     <!-- Logo -->
  54.                                                     <div class="img-fluid" style="color: #3F5D87;">
  55.                                                         {{ child.title }}
  56.                                                     </div>
  57.                                                 </div>
  58.                                             </div> <!-- / .row -->
  59.                                             <!-- Text -->
  60.                                             <div class="mb-5 mb-md-7">
  61.                                                {{ child.description|raw }}
  62.                                             </div>
  63.                                             <!-- Footer -->
  64.                                         </blockquote>
  65.                                     </div>
  66.                                 </div>
  67.                                 {% endfor %}
  68.                                 {% endif %}
  69.                             </div>
  70.                         </div>
  71.                     </div> <!-- / .row -->
  72.                 </div>
  73.             </div>
  74.         </div> <!-- / .row -->
  75.     </div> <!-- / .container -->
  76. </section>