templates/front/spare_parts/spare_parts_warranty.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_warranty')) }}">
  4. {% endblock %}
  5. {% block cssadicional %}{% endblock %}
  6. {% block classbody %}{% endblock %}
  7. {% block content %}
  8.     <section class="repuestos_detalle">
  9.         <div class="repuesto_detalle_banner" style="background-image:url('{{ asset(sd.bannerImage|image_path) }}')">
  10.             <div class="repuesto_detalle_banner_content ww_center">
  11.                 <ul>
  12.                     <li><a href="{{ path('home') }}">Inicio</a></li>
  13.                     <li><span>/</span></li>
  14.                     <li><a href="{{ path('spare_parts') }}">Repuestos</a></li>
  15.                     <li><span>/</span></li>
  16.                     <li><a class="active">Garantía de Repuestos</a></li>
  17.                 </ul>
  18.                 {% if sd.bannerTitle %}
  19.                     <h2>{{ sd.bannerTitle }}</h2>
  20.                 {% endif %}
  21.                 <div class="repuesto_detalle_btn">
  22.                     <a class="btn btn_gray" href="{{ path('quotation_request') }}">Cotizar repuestos</a>
  23.                     {% if info.showShop %}
  24.                         <a class="btn btn_blue btn_icon" href="{{ info.shopLink|external_url }}">{{ info.shopButtonText ?: 'Tienda Online' }}<span class="icon-arrow_forward_ios"></span></a>
  25.                     {% endif %}
  26.                 </div>
  27.             </div>
  28.         </div>
  29.         <div class="repuesto_detalle_wrap ww_center">
  30.             {% if sd.detailShow %}
  31.                 <div class="repuesto_detalle_itm">
  32.                     {% if sd.detailImage|image_path %}
  33.                         <figure class="repuestos_detalle_image">
  34.                             <img src="{{ asset(sd.detailImage|image_path) }}" width="517" height="" alt="{{ sd.detailImage|split_alt }}">
  35.                         </figure>
  36.                     {% endif %}
  37.                     <div class="repuestos_detalle_info">
  38.                         {% if sd.detailText %}
  39.                             {{ sd.detailText|raw }}
  40.                         {% endif %}
  41.                         {% if info.showShop %}
  42.                             <a class="btn btn_blue btn_icon" href="{{ info.shopLink|external_url }}">
  43.                                 {{ info.shopButtonText ?: 'Tienda Online' }}
  44.                                 <span class="icon-arrow_forward_ios"></span>
  45.                             </a>
  46.                         {% endif %}
  47.                     </div>
  48.                 </div>
  49.             {% endif %}
  50.             {% if sd.messageShow and sd.messageText %}
  51.                 <div class="repuesto_detalle_aviso">
  52.                     <p>
  53.                         <span class="icon-info"></span>{{ sd.messageText|nl2br }}
  54.                     </p>
  55.                 </div>
  56.             {% endif %}
  57.         </div>
  58.     </section>
  59. {% endblock %}
  60. {% block jsfinal %}{% endblock %}