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

Open in your IDE?
  1. <footer class="footer">
  2.     <div class="footer_up">
  3.         <div class="footer_container ww_center">
  4.             <figure class="footer_logo">
  5.                 <img src="{{ asset(info.footerLogo|image_path) }}" width="178" height="20" alt="{{ info.seoTitle }}">
  6.             </figure>
  7.             <div class="footer_info">
  8.                 <div class="footer_box">
  9.                     <span class="icon-place-1"></span>
  10.                     <p><a href="{{ info.address|google_maps_search }}">{{ info.address }}</a></p>
  11.                 </div>
  12.                 <div class="footer_box">
  13.                     <span class="icon-phone_in_talk"></span>
  14.                     <p><a href="tel:{{ info.phone|only_numbers }}">{{ info.phone }}</a></p>
  15.                 </div>
  16.                 <div class="footer_box">
  17.                     <span class="icon-mail_outline"></span>
  18.                     <p><a href="mailto:{{ info.email }}">{{ info.email }}</a></p>
  19.                 </div>
  20.             </div>
  21.         </div>
  22.     </div>
  23.     <div class="footer_down">
  24.         <div class="footer_content ww_center">
  25.             <div class="footer_navigation">
  26.                 <div class="footer_item footer_item_1">
  27.                     <h5 class="footer_subtitle footer_subtitle_resp">la Empresa</h5>
  28.                     <div class="footer_menu">
  29.                         <ul>
  30.                             <li>
  31.                                 <a href="{{ path('about_us') }}">Nosotros</a>
  32.                             </li>
  33.                             {% if info.showBlog %}
  34.                                 <li>
  35.                                     <a href="{{ info.socialBlogLink|external_url }}" target="_blank">Noticias</a>
  36.                                 </li>
  37.                             {% endif %}
  38.                         </ul>
  39.                     </div>
  40.                 </div>
  41.                 <div class="footer_item footer_item_2">
  42.                     <h5 class="footer_subtitle footer_subtitle_resp">Marcas</h5>
  43.                     <div class="footer_menu">
  44.                         <ul>
  45.                             {% for item in menu_brands %}
  46.                                 <li>
  47.                                     {% if item.openExternalLink and item.externalLink %}
  48.                                         <a href="{{ item.externalLink|external_url }}" target="_blank">{{ item.title }}</a>
  49.                                     {% else %}
  50.                                         <a href="{{ path('brand', {'slug': item.slug}) }}">{{ item.title }}</a>
  51.                                     {% endif %}
  52.                                 </li>
  53.                             {% endfor %}
  54.                         </ul>
  55.                     </div>
  56.                 </div>
  57.                 <div class="footer_item footer_item_3">
  58.                     <h5 class="footer_subtitle footer_subtitle_resp">Post Venta</h5>
  59.                     <div class="footer_menu">
  60.                         <ul>
  61.                             <li>
  62.                                 <a href="{{ path('spare_parts') }}">Repuestos</a>
  63.                             </li>
  64.                             <li>
  65.                                 <a href="{{ path('services') }}">Servicios</a>
  66.                             </li>
  67.                             <li>
  68.                                 <a href="{{ path('spare_parts_warranty') }}">Garantía</a>
  69.                             </li>
  70.                         </ul>
  71.                     </div>
  72.                 </div>
  73.                 <div class="footer_item footer_item_4">
  74.                     <h5 class="footer_subtitle footer_subtitle_resp">Legales</h5>
  75.                     <div class="footer_menu">
  76.                         <ul>
  77.                             <li>
  78.                                 <a href="{{ path('data_protection_policies') }}">Política de Protección de datos</a>
  79.                             </li>
  80.                             <li>
  81.                                 <a href="{{ path('cookies_policy') }}">Políticas de Cookies</a>
  82.                             </li>
  83.                             <li>
  84.                                 <a href="{{ path('terms_and_conditions') }}">Términos y Condiciones</a>
  85.                             </li>
  86.                             <li>
  87.                                 <a href="{{ path('arco_rights') }}">Derechos ARCO</a>
  88.                             </li>
  89.                         </ul>
  90.                     </div>
  91.                 </div>
  92.                 <div class="footer_item footer_item_5">
  93.                     <h5 class="footer_subtitle">Siguenos en</h5>
  94.                     <div class="footer_redes">
  95.                         <ul>
  96.                             {% if info.showSocial %}
  97.                                 {% if info.showFacebook %}
  98.                                     <li>
  99.                                         <a href="{{ info.socialFacebookLink|external_url }}" target="_blank" class="footer_redes_link">
  100.                                             <span class="footer_redes_icon icon-facebook"></span>
  101.                                             <span class="footer_redes_text">Facebook</span>
  102.                                         </a>
  103.                                     </li>
  104.                                 {% endif %}
  105.                                 {% if info.showLinkedin %}
  106.                                     <li>
  107.                                         <a href="{{ info.socialLinkedinLink|external_url }}" target="_blank" class="footer_redes_link">
  108.                                             <span class="footer_redes_icon icon-linkedin"></span>
  109.                                             <span class="footer_redes_text">Linkedin</span>
  110.                                         </a>
  111.                                     </li>
  112.                                 {% endif %}
  113.                                 {% if info.showYoutube %}
  114.                                     <li>
  115.                                         <a href="{{ info.socialYoutubeLink|external_url }}" target="_blank" class="footer_redes_link">
  116.                                             <span class="footer_redes_icon icon-youtube-1"></span>
  117.                                             <span class="footer_redes_text">Youtube</span>
  118.                                         </a>
  119.                                     </li>
  120.                                 {% endif %}
  121.                             {% endif %}
  122.                         </ul>
  123.                     </div>
  124.                 </div>
  125.             </div>
  126.             <div class="footer_credits">
  127.                 <div class="footer_copyright">
  128.                     <p>© {{ "now"|date('Y') }} Euro Camiones Perú</p>
  129.                 </div>
  130.                 <div class="footer_claims">
  131.                     <a href="{{ path('claim') }}" class="footer_claims_link">
  132.                         <figure class="footer_claims_icon">
  133.                             <img src="{{ asset('static/img/footer-libro.svg') }}" width="37" height="27" alt="libro">
  134.                         </figure>
  135.                         <span class="footer_claims_text">Libro de reclamaciones</span>
  136.                     </a>
  137.                 </div>
  138.                 <div class="footer_team">
  139.                     <a href="https://www.staffdigital.pe/proyecto/" class="footer_team_link">
  140.                         <span class="footer_team_text">Diseño por:</span>
  141.                         <figure class="footer_team_img">
  142.                             <img src="{{ asset('static/img/staffdigital.svg') }}" width="73" height="14" alt="staffdigital">
  143.                         </figure>
  144.                     </a>
  145.                 </div>
  146.             </div>
  147.         </div>
  148.     </div>
  149. </footer>
  150. <div class="f-cookies">
  151.     <div class="f-cookies_content ww_center">
  152.         <div class="f-cookies_text">
  153.             <p>este sitio usa cookies. <a href="#">Más información</a></p>
  154.         </div>
  155.         <div class="f-cookies_button">
  156.             <a href="" class="f-agree-cookie">Aceptar</a>
  157.         </div>
  158.     </div>
  159. </div>