templates/includes/footer.html.twig line 1

Open in your IDE?
  1. 
    {#footer#}
    
    <!-- Cta Start -->
                <div class="section cta-section">
                <div class="container">
                    <div class="cta-wrap">
                        <div class="row align-items-center">
                            <div class="col-lg-6">
                                <!-- Cta Left Start -->
                                <div class="cta-left">
                                    <h2 class="title">{{ pimcore_input('footerContactHeading', {'placeholder': 'Footer Contact Section Heading'}) }}</h2>
                                </div>
                                <!-- Cta Left End -->
                            </div>
                            <div class="col-lg-6">
                                <!-- Cta Right Start -->
                                <div class="cta-right">
                                    <span class="number">{{ pimcore_input('ContactNo', {'placeholder': 'Please enter contact number here'}) }}</span>
                                    {# <a class="btn cta-contact-btn" href="#">Contact Us</a> #}
                                    {{ pimcore_link('Contact_page_Link') }}
                                </div>
                                <!-- Cta Right End -->
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <!-- Cta End -->
    
                    <!-- Footer Section Start -->
            <div class="section footer-section">
    
                <div class="container">
    
                <div class="row">
    
                            {% if editmode %}
                                <h3 class="float-left">{{ 'Address block' }}</h3>
                            {% endif %}
                        <div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12">
                            <div class="office-address">
    
                            {% for i in pimcore_iterate_block(pimcore_block('adressBlock')) %}
    
                                {% if editmode %}
                                    {{ pimcore_input('addressclass', {'placeholder': 'Enter Address class like office-dubai or office-usa.'}) }}
                                {% else %}
                                    {% set addressClass =  pimcore_input('addressclass') %}
                                {% endif %}
    
                                    
                                <div class="{{not editmode ? addressClass : ''}}">
                                    <div class="office-icon">
                                        {# <img src="assets/images/icons/dubaitower.png" alt=""> #}
                                        {{ pimcore_image("addressLandmark" , {
                                            "title": "Drag address landmark logo image here",
                                            "width": 200,
                                            "height": 100,
                                            "thumbnail": ""
                                            
                                            }) 
                                        }}
                                    </div>
                                    <p>{{ pimcore_input('address', {'placeholder': 'Enter Address here.'}) }}</p>
                                </div>
                                {% endfor %}
                            
                            </div>
                        </div>
                    </div>
                    <!-- Footer Widget Wrap Start -->
                    
    
                    <div class="footer-widget-wrap">
                        <div class="row">
                            <div class="col-lg-3 col-sm-6">
                                <!-- Footer Widget Start -->
                                <div class="footer-widget-about">
                                    
    
                                    <a class="footer-logo" href="/">
                                        {{ pimcore_image("footer_logo_white" , {
                                            "title": "Drag your footer logo image here",
                                            "width": 200,
                                            "height": 100,
                                            "thumbnail": "footer_logo"
                                            
                                            }) 
                                        }}
                                    </a>
                                    <div class="widget-info">
                                        <ul>
                                            <li>
                                                <div class="info-icon">
                                                    <i class="flaticon-phone-call"></i>
                                                </div>
                                                <div class="info-text">
                                                    <span><a href="#">+91 458 654 528</a></span>
                                                </div>
                                            </li>
                                            <li>
                                                <div class="info-icon">
                                                    <i class="far fa-envelope-open"></i>
                                                </div>
                                                <div class="info-text">
                                                    <span><a href="#">info@example.com</a></span>
                                                </div>
                                            </li>
                                            <li>
                                                <div class="info-icon">
                                                    <i class="flaticon-pin"></i>
                                                </div>
                                                <div class="info-text">
                                                    <span>60 East 65th Street, NY</span>
                                                </div>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                                <!-- Footer Widget End -->
                            </div>
                            {% if editmode %}
                                <h3 class="float-left">{{ 'Footer Column(s):' }}</h3>
                            {% endif %}
                            {% for i in pimcore_iterate_block(pimcore_block('mainlinkblock')) %}
                                <div class="col-lg-3 col-sm-6">
                                
                                    <!-- Footer Widget Start -->
                                    <div class="footer-widget">
                                        <h4 class="footer-widget-title">{{ pimcore_input('mainBlockTitle', {'placeholder': 'Footer Title'}) }}</h4>
    
                                        <div class="widget-link">
                                            <ul class="link">
                                            {% for i in pimcore_iterate_block(pimcore_block('linkblock')) %}
                                                <li>{{ pimcore_link('myLink') }}</li>
                                            {% endfor %}
                                            </ul>
                                        </div>
                                    </div>
                                    <!-- Footer Widget End -->
                                </div>
                            {% endfor %}
    
                        </div>
                    </div>
                    <!-- Footer Widget Wrap End -->
                </div>
    
                <!-- Footer Copyright Start -->
                
    
    
                <div class="footer-copyright-area">
                    <div class="container">
                        <div class="footer-copyright-wrap">
                            <div class="row align-items-center">
                                <div class="col-lg-6 col-md-6">
                                    <!-- Footer Copyright Text Start -->
                                    <div class="copyright-text">
                                        <p>© Copyrights {{'now'|date('Y')}} Centric USA All rights reserved.</p>
                                    </div>
                                    <!-- Footer Copyright Text End -->
                                </div>
                                <div class="col-lg-6 col-md-6">
                                    <!-- Footer Copyright Social Start -->
                                    {% if editmode %}
                                        <h3 class="float-left">{{ 'Social links' }}</h3>
                                    {% endif %}
                                    <div class="copyright-social">
                                        <ul class="social">
                                        {% for i in pimcore_iterate_block(pimcore_block('SocialLinkBlock')) %}
                                            {% if editmode %}
                                                {{ pimcore_link('mySocialLink') }}
                                            {% else %}
                                            {% set socialUrl = pimcore_link('mySocialLink') %}
    
                                                <li><a href="{{ socialUrl.getHref() }}" target="{{ socialUrl.getTarget() }}">{{ socialUrl.getText() | raw }}</a></li>
                                            {% endif %}
    
                                        {% endfor %}
                                        </ul>
                                    </div>
                                    <!-- Footer Copyright Social End -->
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <!-- Footer Copyright End -->
            </div>
            <!-- Footer Section End -->
    
              <!-- back to top start -->
        {% if not editmode %}
            <div class="progress-wrap">
                <svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
                    <path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
                </svg>
            </div>
        {% endif %}
            <!-- back to top end -->