{% extends "front/_common/_base.html.twig" %}
{% block linkcanonical %}
<link rel="canonical" href="{{ absolute_url(path('spare_parts')) }}">
{% endblock %}
{% block cssadicional %}{% endblock %}
{% block classbody %}{% endblock %}
{% block content %}
<section class="repuestos">
<div class="repuestos_banner">
<div class="repuestos_container ww_center">
<ul>
<li><a href="{{ path('home') }}">Inicio</a></li>
<li><span>/</span></li>
<li><a href="{{ path('after_sales') }}">Post Venta</a></li>
<li><span>/</span></li>
<li><a class="active">Repuestos</a></li>
</ul>
<h2>{{ sd.title }}</h2>
</div>
</div>
<div class="repuestos_row ww_center">
{% if sd.storesShow %}
<a href="{{ path('network') }}" class="repuestos_itm">
{% if sd.storesImage|image_path %}
<figure class="repuestos_image">
<img src="{{ asset(sd.storesImage|image_path) }}" width="" height="" alt="{{ sd.storesImage|split_alt }}">
</figure>
{% endif %}
<div class="repuestos_info">
<h3 class="repuestos_color_blue">{{ sd.storesTitle ?: 'Tiendas' }}</h3>
<div class="repuestos_btn">Ver detalles <span class="icon-arrow_forward_ios"></span></div>
</div>
</a>
{% endif %}
{% if sd.sparePartsWarrantyShow %}
<a href="{{ path('spare_parts_warranty') }}" class="repuestos_itm">
{% if sd.sparePartsWarrantyImage|image_path %}
<figure class="repuestos_image">
<img src="{{ asset(sd.sparePartsWarrantyImage|image_path) }}" width="" height="" alt="{{ sd.sparePartsWarrantyImage|split_alt }}">
</figure>
{% endif %}
<div class="repuestos_info">
<h3 class="repuestos_color_blue">{{ sd.sparePartsWarrantyTitle ?: 'Garantía de repuestos' }}</h3>
<div class="repuestos_btn">Ver detalles <span class="icon-arrow_forward_ios"></span></div>
</div>
</a>
{% endif %}
{% if sd.shopShow and info.showShop %}
<a href="{{ info.shopLink }}" target="{{ info.shopTarget|url_target }}" class="repuestos_itm">
{% if sd.shopImage|image_path %}
<figure class="repuestos_image">
<img src="{{ asset(sd.shopImage|image_path) }}" width="" height="" alt="{{ sd.shopImage|split_alt }}">
</figure>
{% endif %}
<div class="repuestos_info">
<h3 class="repuestos_color_blue">{{ sd.shopTitle ?: info.shopButtonText ?: 'Tienda online' }}</h3>
<div class="repuestos_btn" target="_blank">Ver detalles <span class="icon-Group"></span></div>
</div>
</a>
{% endif %}
{% if sd.applicationShow %}
<a href="{{ path('quotation_request') }}" class="repuestos_itm repuesto_hover_dif">
{% if sd.applicationImage|image_path %}
<figure class="repuestos_image">
<img src="{{ asset(sd.applicationImage|image_path) }}" width="" height="" alt="{{ sd.applicationImage|split_alt }}">
</figure>
{% endif %}
<div class="repuestos_info">
<h3 class="repuestos_color_blue">{{ sd.applicationTitle ?: 'Solicitud de cotización' }}</h3>
<div class="btn btn_blue btn_icon" >Solicitar aquí<span class="icon-arrow_forward_ios"></span></div>
</div>
</a>
{% endif %}
</div>
</section>
{% endblock %}
{% block jsfinal %}{% endblock %}