templates/include/CONFERENCE/_slides.html.twig line 1

Open in your IDE?
  1. <div class="sliderleft1 slider-1">
  2.     {% for slide in slides %}
  3.         <div class="item-slider">
  4.             <div class="item d-flex align-items-end justify-content-center" style="background-image: url('{{ 'uploads/images/' ~ slide.illustration }}');background-size: cover;background-position: center;">
  5.                 {% if slide.title is not empty %}
  6.                     <h1><strong>{{ slide.title }}</strong></h1>
  7.                 {% endif %}
  8.                 {# <div class="col-xl-6 my-auto">
  9.                     <div class="boxed-right">
  10.                         {% if slide.title is not empty %}
  11.                             <h3>{{ slide.title }}</h3>
  12.                         {% endif %}
  13.                         {% if slide.subtitle is not empty %}
  14.                             <h4>{{ slide.subtitle }}</h4>
  15.                         {% endif %}
  16.                         {% if slide.description is not empty %}
  17.                             {{ slide.description|raw }}
  18.                         {% endif %}
  19.                         {% if slide.buttonTitle is not empty %}
  20.                             <a href="{{ slide.buttonLink }}" class="btn btn-1">{{ slide.buttonTitle }}</a>
  21.                         {% endif %}
  22.                     </div>
  23.                 </div> #}
  24.             </div>
  25.         </div>
  26.     {% endfor %}
  27. </div>