I'm very new to Drupal and not (yet) familiar with the terms and namings.
I came across a web site in Drupal 8 that uses Paragraph. I'm trying to reproduce the slideshow that apparently uses Owl carousel. But I'm confused about how they made that slider:
(These images slide from right to left)
In the Inspector, the code shows that Owl carousel used in the div wrapper and each item. But there is no owl included in the template twig file.
Template twig file:
<div class="our_partners_area bg_gary py-70 pb_0"> <div class="container"> <div class="our_partners_h wow fadeInUp"> <h1>{{content.field_title.0}}</h1> <p>{{content.field_description.0}}</p> </div> <!--#Start assets/images start --> <div class="partners wow fadeInUp"> {% for item in paragraph.field_client_image %} <div class="item"> <img src="{{ file_url(item.entity.uri.value) }}" alt=""> </div> {% endfor %} </div> <!--#End assets/images --> <div class="bottom-partner wow fadeInRight text-center" style="visibility: visible; animation-name: fadeInRight;"> <a id="#services" href="{{ content.field_button.0['#url'] }}" class="btn btn-default wow fadeInUp js-scroll-trigger" data-wow-delay=" 0.5s" style="visibility: visible; animation-delay: 0.5s; animation-name: fadeInUp;"><span class="skew_14">{{ content.field_button.0['#title'] }} </span></a> </div> </div> </div> I assume the below code generates the classes owl-item, owl-item cloned:
{% for item in paragraph.field_client_image %} <div class="item"> <img src="{{ file_url(item.entity.uri.value) }}" alt=""> </div> {% endfor %} Anyone can enlighten my candle?
PS: I have access to all templates files and even have access to the site: no Owl carousel module installed but the libraries is present.
Thanks for your time.

{% for item in paragraph.field_client_image %}?