templates/section/aside.html.twig line 1

Open in your IDE?
  1. <style>
  2.     .btn-downloads{
  3.         background-color: #ff6600;
  4.         color: #fff;
  5.         height: 50px !important;
  6.         width: 100% !important;
  7.         margin: 0px !important;
  8.     }
  9.     .btn-downloads:hover{
  10.         background-color: #051a53;
  11.         color: #fff;
  12.         height: 50px !important;
  13.         width: 100%;
  14.     }
  15.     .lien-download{
  16.         font-size: 18px !important; color: #fff; 
  17.         font-family: arial; font-weight: normal;
  18.     }
  19.             
  20. </style>
  21.     <aside id="sidebar-event" class="sidebar" style="margin: 0px; padding: 0px; width: 100%;">
  22.         <div id="event_feature-2" class="widget widget_feature_event">
  23.           <h4 class="widget-title">Les Rencontres Top Management</h4>
  24.           <div class="event-feature slide-event-feature owl-carousel owl-theme">
  25.               {% if manageLimit != null %}
  26.                 {% for man in manageLimit %}
  27.                  <div class="ovaev-content" >
  28.                     <div class="item">
  29.                        <div class="desc">
  30.                           <div class="event-thumbnail ">
  31.                              <!--
  32.                              <div class="date-event">
  33.                                 <span class="date">
  34.                                 21        </span>
  35.                                 <span class="month">
  36.                                 Jun        </span>
  37.                              </div>
  38.                              -->
  39.                              <a href="{{ path('front.seminaire.management.detail', {'slug': man.slug}) }}" aria-label="{{ man.theme }}">
  40.                                  <img loading="lazy" width="600" height="400" src="{{ asset('public/uploads/images/managements/' ~ man.image) }}" 
  41.                                  class="attachment-ovaev_event_thumbnail size-ovaev_event_thumbnail wp-post-image" alt="{{ man.theme }}" 
  42.                                  decoding="async" srcset="{{ asset('public/uploads/images/managements/' ~ man.image) }}" sizes="(max-width: 600px) 100vw, 600px" />            
  43.                              </a>
  44.                           </div>
  45.                           <div class="event_post">
  46.                              <h2 class="second_font event_title">
  47.                                 <a href="{{ path('front.seminaire.management.detail', {'slug': man.slug}) }}" title="{{ man.theme }}">
  48.                                 {{ man.theme }}
  49.                                 </a>
  50.                              </h2>
  51.                              <div class="time-event">
  52.                                 <div class="time equal-date">
  53.                                    <span class="icon-time">
  54.                                    <i class="fas fa-clock icon_event" aria-hidden="true"></i>
  55.                                    </span>
  56.                                    <span class="time-date-child">
  57.                                    <span class="date-child">
  58.                                    {{ man.createdat|format_datetime(locale='fr',pattern="EEEE dd MMMM YYYY") }}    </span>
  59.                                    </span>
  60.                                 </div>
  61.                                 <div class="venue">
  62.                                    <i class="fas fa-map-marker-alt icon_event" aria-hidden="true"></i>
  63.                                    <span class="number">
  64.                                    {{ man.ville }}</span>
  65.                                 </div>
  66.                              </div>
  67.                           </div>
  68.                        </div>
  69.                     </div>
  70.                  </div>
  71.                 {% endfor %}
  72.              {% endif %}
  73.     
  74.           </div>
  75.         </div>
  76.     
  77.        <div style="margin-top: 10px; margin-bottom: 30px;">
  78.            <a href="{{ path('front.seminaire.internationaux') }}">
  79.            <div class="row btn-downloads">
  80.                 <div class="col-md-12 col-sm-12" style="text-align: center !important;">
  81.                     <h3 class="lien-download" style="margin: 10px; !important; ">Découvrez nos formations</h3>
  82.                 </div>
  83.             </div>
  84.             </a>
  85.         </div>    
  86.         <div id="event_feature-2" class="widget widget_feature_event">
  87.             <h4 class="widget-title">Séminaires à Shanghai</h4>
  88.             <div class="event-feature slide-event-feature owl-carousel owl-theme">
  89.                 <div style="height: auto; width: 100%; padding: 0px;">
  90.                     <swiper-container 
  91.                         class="mySwiper" id="slide_web" pagination="true"  data-autoplay="true" 
  92.                         data-delay="2500" pagination-clickable="true" space-between="0"
  93.                         autoplay-delay="3000" autoplay-disable-on-interaction="false" slides-per-view="1">
  94.                         <swiper-slide>
  95.                             <a href="{{ path('front.inter.shanghai') }}">
  96.                                 <img src="{{ asset('public/inter/slides/shanghai/shanghai_1.jpg')}}">
  97.                             </a>
  98.                         </swiper-slide>
  99.                         <swiper-slide>
  100.                             <a href="{{ path('front.inter.shanghai') }}">
  101.                                 <img src="{{ asset('public/inter/slides/shanghai/shanghai_2.jpg')}}">
  102.                             </a>
  103.                         </swiper-slide>
  104.                         <swiper-slide>
  105.                             <a href="{{ path('front.inter.shanghai') }}">
  106.                                 <img src="{{ asset('public/inter/slides/shanghai/shanghai_3.jpg')}}">
  107.                             </a>
  108.                         </swiper-slide>
  109.                     </swiper-container>
  110.                 </div>
  111.             </div>
  112.         </div>    
  113.                 
  114.     </aside>
  115. </div>
  116. <!--
  117.     <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-element-bundle.min.js"></script>
  118.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> 
  119.     <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
  120. -->