templates/frontend/block/clients.html.twig line 1
<div class="block block-clients">
<div class="block-part-background">
{{ app_static_image_html('img/homepage/client/background.jpg') }}
</div>
<div class="block-part-content container">
<div class="block-part-header">
<h2 class="block-part-title">Co říkají naši klietni</h2>
<a href="https://www.car-advisor.cz/provozovna/auto-i-s-r/CZ-2298" class="button" target="_blank"><span>Car Advisor recenze</span></a>
<a href="https://www.google.com/maps/place/auto+I.S.R.+a.s./@50.0047836,14.5695883,18.37z/data=!4m8!3m7!1s0x470b8e741a85c58f:0x67ca86498295aaa1!8m2!3d50.0049209!4d14.5698298!9m1!1b1!16s%2Fg%2F1tffhh4v" class="button" target="_blank"><span>Google recenze</span></a>
</div>
<div class="block-part-clients" data-splide="{{
{
'type': 'slide',
'pagination': true,
'arrows': false,
'perPage': 4,
'gap': '1rem',
'breakpoints': {
'compact': {
'perPage': 3,
},
'tablet': {
'perPage': 2,
},
'low_end_smartphone': {
'perPage': 1,
},
},
}|json_encode|escape('html') }}">
{% for client in app_clients() %}
<div class="client">
{{ app_image_html(client.photo, { 'class': 'client-image' }) }}
<span class="client-name">{{ client.fullName }}</span>
<span class="client-occupation">{{ client.occupation }}</span>
<p class="client-text">{{ client.content }}</p>
</div>
{% endfor %}
</div>
</div>
</div>