themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Homepage/_aboutUs.html.twig line 1

Open in your IDE?
  1. {% import '@SyliusShop/Common/Macro/sectionHeaders.html.twig' as headers %}
  2. {% set media_aboutus = app_get_media_image_by_code('media_about_us', sylius.localeCode, sylius.channel.code) %}
  3. {% if media_aboutus is not null %}
  4. <section class="bloc-about px-2 pt-lg-5 pt-4 mt-md-0 mt-3 pb-lg-5 pb-4 mb-lg-3">
  5.     <div class="max-container-5 px-0">
  6.         <h1 class="title-medium text-md-left text-center color-black hidden-desk-br">{{ media_aboutus.name|raw }}</h1>
  7.         <div class="row   pt-md-3  no-gutters mx-md-0 mx-n2">
  8.             <div class="col-12 col-md-6 col-lg-5 order-md-3 mt-md-0 mt-3   px-0">
  9.                 <div class="h-100 object-fit-img  wow fadeInLeft pr-lg-2" data-wow-duration="0.8s" data-wow-delay="0.2s">
  10.                     {% if media_aboutus.path is not null %}
  11.                         {% set path_about =  media_aboutus.path %}
  12.                     {% else %}
  13.                             {% set path_about =  asset('images/about_img2.jpg') %}
  14.                         {% endif %}
  15.                     <img src="{{path_about}}" alt="">
  16.                 </div>
  17.             </div>
  18.             <div class="col-12 col-md-6 col-lg-7 order-md-4 px-lg-0 px-2">
  19.                 <div class="text-left pt-3 pb-0 d-md-flex align-items-center h-100  pl-md-3 flex-column">
  20.                     <div class="pt-2  expand-me-mobile  fontsize-mobile-text  text-grey">
  21.                         {% if media_aboutus.content is not null %}
  22.                             {{ media_aboutus.content|raw }}
  23.                         {% endif %}
  24.                     </div>
  25.                 </div>
  26.             </div>  
  27.         </div> 
  28.     </div>
  29. </section>
  30.  {% endif %}