templates/partials/sidecol.html.twig line 1

Open in your IDE?
  1. <div class="col-lg-3">
  2.     {%  if top_events|length >0 %}
  3.         <div class="owl-carousel owl-theme">
  4.             {% set i = 1  %}
  5.             {% for event in top_events %}
  6.                 {# @var event \App\Controller\Objects\HomeCarouselItem #}
  7.                 <div class="card {% if not event.past %}card-primary{% endif %} animation-delay-1 pointer-event" title="{{ event.title }}">
  8.                     <div class="card-header">
  9.                         <h3 class="card-title"><i class="zmdi zmdi-calendar"></i> {{ event.date }}</h3>
  10.                     </div>
  11.                     <div class="withripple zoom-img">
  12.                         <a href="{{ event.link }}">
  13.                             <img src="{{ event.picture.small }}" alt="" class="img-fluid {% if event.past %}grayscale{% endif %}">
  14.                         </a>
  15.                         <span class="badge badge-primary pull-right badge-custom uppercase">{{ event.object }}</span>
  16.                         <div class="ripple-container"></div></div>
  17.                     <div class="card-body overflow-hidden text-center">
  18.                         <h4 class="color-black uppercase inline-text">{{ event.title }}</h4>
  19.                         <!-- <p>{{ event.text }}</p> -->
  20.                     </div>
  21.                 </div>
  22.             {% endfor %}
  23.         </div>
  24.         <div class="owl-dots" style="margin-top: -10px"></div>
  25.     {% endif %}
  26.     {% for event in facebook_feed %}
  27.         {# @var event \App\Controller\Objects\HomeFacebookItem #}
  28.         <div class="card">
  29.             <figure class="ms-thumbnail ms-thumbnail-horizontal">
  30.                 <img class="img-fluid facebook-img" src="{{ event.picture }}" alt="">
  31.             </figure>
  32.             <div class="card-body overflow-hidden card-facebook-stream">
  33.                 <a href="{{ event.link }}" class="btn-circle btn-circle btn-facebook btn-circle-raised btn-card-float right wow zoomInDown index-2" style="visibility: visible; animation-name: zoomInDown;"><i class="zmdi zmdi-facebook"></i></a>
  34.                 <h4 class="no-margin facebook-stream" title="{{ event.title }}" >{{ event.title }}</h4>
  35.             </div>
  36.         </div>
  37.     {% endfor %}
  38. </div>