{% set testimonials = view.module.testimonials %}

{% if testimonials.data %}
<section id="o-que-as-pessoas-falam-de-nos" class="index section-testimonials">
    <div class="container">
        {{ toolsCommon.indexTitle(testimonials, null) }}

        <div class="owl-carousel owl-start owl-theme owl-nav-float" data-options='{item: 1, nav: true, dots: false, autoplayTimeout: 10000}'>
            {% for item in testimonials.data %}
            <div class="testimonial">
                <img src="{{ core.public }}/img/quotes.png" class="img-quotes" alt="Depoimento">

                {{ macroElements.html_figureSimple(item, 'thumb', 'img-avatar img-rounded', false) }}

                <div class="testimonial-content">
                    {{ item.text|raw }}

                    <cite>
                        {{ item.title|raw }}

                        <span>{{ item.company|raw }}</span>
                    </cite>
                </div>
            </div>
            {% endfor %}
        </div>
    </div>
</div>
{% endif %}

