templates/dashboard/template_parts/_footer.html.twig line 1

Open in your IDE?
  1. <!-- BEGIN .footer -->
  2. <footer class="footer fixed-bottom" style="background: whitesmoke;">
  3.     <section id="footertop" class="py-2" style="background-color: whitesmoke">
  4.         <div class="container">
  5.             <div class="row">
  6.                 <div class="col-md-4">
  7.                     <div class="">
  8.                         <div id="zoom-social-icons-widget-2" class=" widget clearfix zoom-social-icons-widget">
  9.                             {% if CMS.content is not null %}
  10.                             <a href={{ CMS.content.facebook }} target="_blank">
  11.                                 <span class="zoom-social_icons-list-span social-icon socicon socicon-facebook"
  12.                                       data-hover-rule="color" data-hover-color="#dd3333"
  13.                                       style="color : #1877F2; font-size: 16px; padding:6px"><i
  14.                                             class="fab fa-facebook-f" style="font-size:24px"></i> </span></a>
  15.                             <a href={{ CMS.content.twitter }}  target="_blank">
  16.                                 <span class="zoom-social_icons-list-span social-icon socicon socicon-twitter"
  17.                                       data-hover-rule="color" data-hover-color="#dd3333"
  18.                                       style="color : #1da1f2; font-size: 16px; padding:6px"><i class="fab fa-twitter"  style="font-size:24px"></i> </span></a>
  19.                             <a href={{ CMS.content.instagram }}  target="_blank">
  20.                                 <span class="zoom-social_icons-list-span social-icon socicon socicon-instagram"
  21.                                       data-hover-rule="color" data-hover-color="#dd3333"
  22.                                       style="color : #1da1f2; font-size: 16px; padding:6px"><i class="fab fa-instagram"  style="font-size:24px"></i> </span></a>
  23.                             {% endif %}
  24.                         </div>
  25.                     </div>
  26.                 </div>
  27.                 <div class="col-md-4">
  28.                     <div>
  29.                         <div class="widget_text chw-widget">
  30.                             <div class="textwidget custom-html-widget">
  31.                                 <div>
  32.                                     <p>Contact info</p>
  33.                                     <hr>
  34.                                     {% if CMS.content is not null %}
  35.                                     <p><a target="_blank" href="{{ CMS.content.companyAddressCoordinates }}">{{ CMS.content.companyAddress }}</a></p>
  36.                                     {% endif %}
  37.                                 </div>
  38.                             </div>
  39.                         </div>
  40.                     </div>
  41.                 </div>
  42.             </div>
  43.         </div>
  44.     </section>
  45.     <!-- Bottom footer ended -->
  46.    <!-- END .footer-inner -->
  47.     </div>
  48.     <!-- END .footer -->
  49. </footer>