templates/front/includes/footer.html.twig line 1

Open in your IDE?
  1. <footer class="footer-area">
  2.     <button class="scroll-top scroll-to-target style2" data-target="html" data-aos="slide-up" data-aos-easing="linear" data-aos-duration="1100">
  3.         <span class="fa fa-long-arrow-up"></span>
  4.     </button>
  5.     <div class="footer">
  6.         <div class="container">
  7.             <div
  8.                 class="row">
  9.                 <!--Start single footer widget-->
  10.                 <div class="col-xl-4 col-lg-4 col-md-12 col-sm-12 wow animated fadeInUp" data-wow-delay="0.3s">
  11.                     <div class="single-footer-widget">
  12.                         <div class="our-company-info">
  13.                             <div class="footer-logo">
  14.                                 <a href="{{ path('front_homepage') }}"><img src="{{ asset('front/assets/images/resources/logo.png') }}" alt="Awesome Footer Logo" title="Logo"></a>
  15.                             </div>
  16.                             <div class="text">
  17.                                 <p>{{ ('app.about.about_us.description.p1'|trans)|slice(0,150) }}...</p>
  18.                             </div>
  19.                         </div>
  20.                         <!-- Start footer contact info -->
  21.                         {% include 'front/includes/footer_contact.html.twig' %}
  22.                         <!-- End footer contact info -->
  23.                     </div>
  24.                 </div>
  25.                 <!--End single footer widget-->
  26.                 <!--Start single footer widget-->
  27.                 <div class="col-xl-4 col-lg-4 col-md-12 col-sm-12 wow animated fadeInUp" data-wow-delay="0.5s">
  28.                     <div class="single-footer-widget margin60-0">
  29.                         <div class="title">
  30.                             <h3>{{ 'app.footer.information.latest_news'|trans }}</h3>
  31.                         </div>
  32.                         <ul class="latest-news">
  33.                             {{ render(controller('App\\Controller\\Front\\BlogController::footerBlogs')) }}
  34.                         </ul>
  35.                     </div>
  36.                 </div>
  37.                 <!--End single footer widget-->
  38.                 <!--Start single footer widget-->
  39.                 <div class="col-xl-4 col-lg-4 col-md-12 col-sm-12 wow animated fadeInUp" data-wow-delay="0.7s">
  40.                     {% include 'front/includes/footer_menu.html.twig' %}
  41.                 </div>
  42.                 <!--End single footer widget-->
  43.             </div>
  44.         </div>
  45.     </div>
  46.     <div class="footer-bottom">
  47.         <div class="container">
  48.             <div class="outer-box">
  49.                 <div class="copyright-text">
  50.                     <p>Copyright © <strong>Horse Family.</strong>
  51.                         All rights reserved By
  52.                         <a href="#">Clictec</a>
  53.                     </p>
  54.                 </div>
  55.                 <div class="footer-social-links">
  56.                     <ul>
  57.                         <li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
  58.                         <li><a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
  59.                         <li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
  60.                     </ul>
  61.                 </div>
  62.             </div>
  63.         </div>
  64.     </div>
  65. </footer>