templates/front/_common/_footer.html.twig line 1

Open in your IDE?
  1. <footer class="footer">
  2.     <!-- redes sociales -->
  3.     <div class="sociales">
  4.         <div class="wancho flex jcsb">
  5.             {% if info.socialFooterText %}
  6.             <h5>{{ info.socialFooterText }}</h5>
  7.             {% endif %}
  8.             {% if info.socialShow and info.socialHeaderShow %}
  9.             <ul class="sidebar__links footer__links">
  10.                 {% if info.socialFbShow and info.socialFbUrl %}
  11.                 <li><a href="{{ info.socialFbUrl }}" target="_blank"><img src="{{STATIC_URL}}img/facebook.png" alt="facebook" /></a></li>
  12.                 {% endif %}
  13.                 {% if info.socialLdShow and info.socialLdUrl %}
  14.                 <li><a href="{{ info.socialLdUrl }}" target="_blank"><img src="{{STATIC_URL}}img/linkedin.png" alt="linkedin" /></a></li>
  15.                 {% endif %}
  16.                 {% if info.socialIgShow and info.socialIgUrl %}
  17.                 <li><a href="{{ info.socialIgUrl }}" target="_blank"><img src="{{STATIC_URL}}img/instagram.png" alt="instagram" /></a></li>
  18.                 {% endif %}
  19.                 {% if info.socialYtShow and info.socialYtUrl %}
  20.                 <li><a href="{{ info.socialYtUrl }}" target="_blank"><img src="{{STATIC_URL}}img/youtube.png" alt="youtube" /></a></li>
  21.                 {% endif %}
  22.                 {% if info.socialTtShow and info.socialTtUrl %}
  23.                 <li><a href="{{ info.socialTtUrl }}" target="_blank"><img src="{{STATIC_URL}}img/tiktoklogo.png" alt="tiktok" /></a></li>
  24.                 {% endif %}
  25.             </ul>
  26.             {% endif %}
  27.         </div>
  28.     </div>
  29.     <!-- creditos -->
  30.     <div class="main-footer">
  31.         <div class="wancho">
  32.             <div class="flex jcsb">
  33.                 <div class="footer__img flex">
  34.                     {% if info.logo1Footer|image_path %}
  35.                     <img
  36.                         src="{{ asset(info.logo1Footer|image_path) }}"
  37.                         alt="faw"
  38.                         width="127"
  39.                         height="128"
  40.                     />
  41.                     {% endif %}
  42.                     {% if info.logo1Footer|image_path %}
  43.                     <img
  44.                         src="{{ asset(info.logo2Footer|image_path) }}"
  45.                         alt="bartolome"
  46.                         width="176"
  47.                         height="80"
  48.                     />
  49.                     {% endif %}
  50.                 </div>
  51.                 <div class="footer__info-item direcciones">
  52.                     <span>ESTAMOS UBICADOS EN:</span>
  53.                     <ul>
  54.                         {% for item in info.addressItems %}
  55.                         <li>
  56.                             {% if item.addressUrl  %}
  57.                             <a href="{{ item.addressUrl|default('javascript:void(0)') }}" target="{{ item.addressUrl ? '_blank':'_self' }}" class="icon-placeholder"
  58.                                 >{{ item.address }}</a
  59.                             >
  60.                             {% else %}
  61.                             {{ item.address }}
  62.                             {% endif %}
  63.                         </li>
  64.                         {% endfor %}
  65.                     </ul>
  66.                 </div>
  67.                 <div class="footer__info-item">
  68.                     <span>CENTRAL TELEFÓNICA</span>
  69.                     <ul>
  70.                         {% if info.phone %}
  71.                         <li>
  72.                             <a href="tel:{{ info.phone|only_numbers }}" class="icon-phone1">{{ info.phone }}</a>
  73.                         </li>
  74.                         {% endif %}
  75.                         {% if info.whatsapp %}
  76.                         <li>
  77.                             <a href="https://api.whatsapp.com/send?phone={{ info.whatsapp }}" class="icon-whatsapp">{{ info.whatsapp }}</a>
  78.                         </li>
  79.                         {% endif %}
  80.                         {% if info.email %}
  81.                         <li>
  82.                             <a href="mailto:{{info.email|trim|lower}}" class="icon-mail"
  83.                                 >{{ info.email }}</a
  84.                             >
  85.                         </li>
  86.                         {% endif %}
  87.                     </ul>
  88.                 </div>
  89.             </div>
  90.             <div class="creditos flex jcsb">
  91.                 <div class="creditos__links flex">
  92.                     <a href="{{ path('privacy') }}">LEGALES</a>
  93.                     <a href="{{ path('claim') }}">LIBRO DE RECLAMACIONES</a>
  94.                 </div>
  95.                 <p>
  96.                     © Copyright <span id="id_year"></span>. FAW Trucks Perú Todos los
  97.                     derechos reservados.
  98.                 </p>
  99.                 <a
  100.                     class="link-staff"
  101.                     target="_blank"
  102.                     href="http://www.staffcreativa.pe/"
  103.                 >
  104.                     Diseño por
  105.                     <img src="{{STATIC_URL}}img/digital.png" alt="staffdigital" />
  106.                 </a>
  107.             </div>
  108.         </div>
  109.     </div>
  110. </footer>