templates/front/spare_parts/spare_parts.html.twig line 1

Open in your IDE?
  1. {% extends "front/_common/_base.html.twig" %}
  2. {% block linkcanonical %}
  3.     <link rel="canonical" href="{{ absolute_url(path('spare_parts')) }}">
  4. {% endblock %}
  5. {% block cssadicional %}{% endblock %}
  6. {% block classbody %}{% endblock %}
  7. {% block content %}
  8.     <section class="repuestos">
  9.         <div class="repuestos_banner">
  10.             <div class="repuestos_container ww_center">
  11.                 <ul>
  12.                     <li><a href="{{ path('home') }}">Inicio</a></li>
  13.                     <li><span>/</span></li>
  14.                     <li><a href="{{ path('after_sales') }}">Post Venta</a></li>
  15.                     <li><span>/</span></li>
  16.                     <li><a class="active">Repuestos</a></li>
  17.                 </ul>
  18.                 <h2>{{ sd.title }}</h2>
  19.             </div>
  20.         </div>
  21.         <div class="repuestos_row ww_center">
  22.             {% if sd.storesShow %}
  23.                 <a href="{{ path('network') }}" class="repuestos_itm">
  24.                     {% if sd.storesImage|image_path %}
  25.                         <figure class="repuestos_image">
  26.                             <img src="{{ asset(sd.storesImage|image_path) }}" width="" height="" alt="{{ sd.storesImage|split_alt }}">
  27.                         </figure>
  28.                     {% endif %}
  29.                     <div class="repuestos_info">
  30.                         <h3 class="repuestos_color_blue">{{ sd.storesTitle ?: 'Tiendas' }}</h3>
  31.                         <div class="repuestos_btn">Ver detalles <span class="icon-arrow_forward_ios"></span></div>
  32.                     </div>
  33.                 </a>
  34.             {% endif %}
  35.             {% if sd.sparePartsWarrantyShow %}
  36.                 <a href="{{ path('spare_parts_warranty') }}" class="repuestos_itm">
  37.                     {% if sd.sparePartsWarrantyImage|image_path %}
  38.                         <figure class="repuestos_image">
  39.                             <img src="{{ asset(sd.sparePartsWarrantyImage|image_path) }}" width="" height="" alt="{{ sd.sparePartsWarrantyImage|split_alt }}">
  40.                         </figure>
  41.                     {% endif %}
  42.                     <div class="repuestos_info">
  43.                         <h3 class="repuestos_color_blue">{{ sd.sparePartsWarrantyTitle ?: 'Garantía de repuestos' }}</h3>
  44.                         <div class="repuestos_btn">Ver detalles <span class="icon-arrow_forward_ios"></span></div>
  45.                     </div>
  46.                 </a>
  47.             {% endif %}
  48.             {% if sd.shopShow and info.showShop %}
  49.                 <a href="{{ info.shopLink }}" target="{{ info.shopTarget|url_target }}" class="repuestos_itm">
  50.                     {% if sd.shopImage|image_path %}
  51.                         <figure class="repuestos_image">
  52.                             <img src="{{ asset(sd.shopImage|image_path) }}" width="" height="" alt="{{ sd.shopImage|split_alt }}">
  53.                         </figure>
  54.                     {% endif %}
  55.                     <div class="repuestos_info">
  56.                         <h3 class="repuestos_color_blue">{{ sd.shopTitle ?: info.shopButtonText ?: 'Tienda online' }}</h3>
  57.                         <div class="repuestos_btn" target="_blank">Ver detalles <span class="icon-Group"></span></div>
  58.                     </div>
  59.                 </a>
  60.             {% endif %}
  61.             {% if sd.applicationShow %}
  62.                 <a href="{{ path('quotation_request') }}" class="repuestos_itm repuesto_hover_dif">
  63.                     {% if sd.applicationImage|image_path %}
  64.                         <figure class="repuestos_image">
  65.                             <img src="{{ asset(sd.applicationImage|image_path) }}" width="" height="" alt="{{ sd.applicationImage|split_alt }}">
  66.                         </figure>
  67.                     {% endif %}
  68.                     <div class="repuestos_info">
  69.                         <h3 class="repuestos_color_blue">{{ sd.applicationTitle ?: 'Solicitud de cotización' }}</h3>
  70.                         <div class="btn btn_blue btn_icon" >Solicitar aquí<span class="icon-arrow_forward_ios"></span></div>
  71.                     </div>
  72.                 </a>
  73.             {% endif %}
  74.         </div>
  75.     </section>
  76. {% endblock %}
  77. {% block jsfinal %}{% endblock %}