templates/areas/our-partners/view.html.twig line 1

Open in your IDE?
  1. 
    <!-- Brand Logo Start -->
            <div class="section Brand-section">
                <div class="container">
                    <!-- Brand Wrapper Start -->
                    <div class="brand-wrapper section-padding text-center">
                        <!-- <h3 class="brand-title">Step forward to become one of <span>49,494</span> successful clients </h3> -->
                        <h3 class="brand-title">{{pimcore_input('Heading')}}</h3>
    
                        <!-- Brand Active Start -->
                        <div class="brand-active">
                            <div class="swiper-container">
                            
                                <div class="swiper-wrapper">
                                    {% for i in pimcore_block('partner_block').iterator %}
                                        {% if editmode %}
                                            {{ pimcore_image("PartnerImage",{
                                                    "thumbnail": "",
                                                    width : 200,
                                                    hight : 200
                                                }) }}
                                            
                                        {% else %}
                                            {% set image = pimcore_image("PartnerImage").getThumbnail("") %}
                                        <!-- Single Brand Start -->
                                            <div class="swiper-slide single-brand">
                                                <img src="{{image}}" alt="Brand">
                                            </div>
                                        {% endif %}    
                                    <!-- Single Brand End -->
                                 {% endfor %}   
                                </div>
                            </div>
                        </div>
                        <!-- Brand Active End -->
                    </div>
                    <!-- Brand Wrapper End -->
                </div>
            </div>
            <!-- Brand Logo End -->