src/DcSiteBundle/Resources/views/LandRover/Terms/terms-providing-replacement-car.html.twig line 1

Open in your IDE?
  1. {% extends '@DcSite/LandRover/base.html.twig' %}
  2. {% block title %}
  3.     <title>{{ 'seo.terms.title'|trans({}, 'dc_landrover') }}</title>
  4. {% endblock %}
  5. {% block seo %}
  6.     <meta name="description" content="{{ 'seo.terms.desc'|trans({}, 'dc_landrover') }}" />
  7.     <meta name="keywords"  content="{{ 'seo.terms.keywords'|trans({}, 'dc_landrover') }}" />
  8. {% endblock seo %}
  9. {% block ogtagDynamic %}
  10.     <meta property="og:title" content="{{ 'conditions_of_sales.terms_replacement_car'|trans({}, 'dc_base') }}"/>
  11. {% endblock ogtagDynamic %}
  12. {% block css %}
  13.     <style>
  14.         .terms_of_car-item-name:hover span {
  15.             color: #0C121C!important;
  16.         }
  17.     </style>
  18. {% endblock %}
  19. {% block content %}
  20.     <section class="breadcrumbs__new">
  21.         <div class="container">
  22.             <ol class="global_breadcrumbs__new" itemscope itemtype="https://schema.org/BreadcrumbList">
  23.                 <li class="marker__none" itemprop="itemListElement" itemscope
  24.                     itemtype="https://schema.org/ListItem">
  25.                     <a itemprop="item" href="{{ path('landrover_homepage') }}">
  26.                         <span class="breadcrumbs__link" itemprop="name">Land Rover</span></a>
  27.                     <meta itemprop="position" content="1"/>
  28.                 </li>
  29.                 <div class="arrow-bcs"> ❯ </div>
  30.                 <li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
  31.                     itemtype="https://schema.org/ListItem">
  32.                     <span style="color: #ABABAB;" class="breadcrumbs__link" itemprop="name">{{ 'conditions_of_sales.terms_replacement_car'|trans({}, 'dc_base') }}</span>
  33.                     <meta itemprop="position" content="2"/>
  34.                 </li>
  35.             </ol>
  36.         </div>
  37.     </section>
  38.     {% include '@DcSiteBundle/Modules/terms/terms-providing-replacement-car.html.twig' with {'files': files} %}
  39. {% endblock %}