templates/front/blocks/block-single-graphic.twig line 1

Open in your IDE?
  1. {% set s = get_slide_data(slide, app.request.locale|default('pl')) %}
  2. <div class="col-6 col-lg-3 text-center pb-4 mb-2 mb-lg-0 pb-lg-0 px-2 px-lg-3 px-xl-4">
  3.     {% if s.image is not null %}
  4.         <div class="zoom"><img src="{{ s.image|default('')|imagine_filter('full') }}" alt=""></div>
  5.     {% endif %}
  6.     <p class="mt-3 mb-1 mb-sm-0 mb-lg-2 mb-xl-4 fw-bold {{ s.titleFont|default('') }} text-{{ s.titleColor|default('secondary') }}">{{ s.title|default('') }}</p>
  7.     {{ s.description|default('')|raw }}
  8. </div>