src/DcSiteBundle/Resources/views/Citroen/Service/citroen-instructions.html.twig line 1

Open in your IDE?
  1. {% extends '@DcSite/Citroen/base.html.twig' %}
  2. {% block seo %}
  3.     <title>{{ seoMeta.title ?? 'seo.instructions.title'|trans({}, 'dc_citroen') }}</title>
  4.     <meta name="description" content="{{ seoMeta.description ?? 'seo.instructions.desc'|trans({}, 'dc_citroen') }}" />
  5. {% endblock seo %}
  6. {% block ogtagDynamic %}
  7.     <meta property="og:title" content="{{ seoMeta.title ?? 'seo.instructions.title'|trans({}, 'dc_citroen') }}"/>
  8.     <meta property="og:description" content="{{ seoMeta.description ?? 'seo.instructions.desc'|trans({}, 'dc_citroen') }}"/>
  9. {% endblock ogtagDynamic %}
  10. {% block css %}
  11.     <link rel="stylesheet" href="{{ asset('bundles/core/css/bootstrap_build/tables.css') }}">
  12.     <link rel="stylesheet" href="{{ asset('/bundles/dcsite/css/citroen/finance/style.css') }}">
  13. {% endblock %}
  14. {% block content %}
  15.     <section class="breadcrumbs__new">
  16.         <div class="container">
  17.             <ol class="global_breadcrumbs__new" itemscope itemtype="https://schema.org/BreadcrumbList">
  18.                 <li class="marker__none" itemprop="itemListElement" itemscope
  19.                     itemtype="https://schema.org/ListItem">
  20.                     <a itemprop="item" href="{{ path('citroen_homepage') }}">
  21.                         <span class="breadcrumbs__link" itemprop="name">CITROЁN</span></a>
  22.                     <meta itemprop="position" content="1"/>
  23.                 </li>
  24.                 <div class="arrow-bc"></div>
  25.                 <li class="marker__none" itemprop="itemListElement" itemscope
  26.                     itemtype="https://schema.org/ListItem">
  27.                     <a itemprop="item" href="{{ path('citroen_service_online-booking') }}">
  28.                         <span class="breadcrumbs__link" itemprop="name">{{ 'seo.service.title'|trans({}, 'dc_citroen') }}</span></a>
  29.                     <meta itemprop="position" content="2"/>
  30.                 </li>
  31.                 <div class="arrow-bc"></div>
  32.                 <li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
  33.                     itemtype="https://schema.org/ListItem">
  34.                     <span style="color: #837F7F; font-family: 'UbuntuRegular';" class="breadcrumbs__link" itemprop="name">{{ 'front_page.instruction'|trans({}, 'dc_citroen') }}</span>
  35.                     <meta itemprop="position" content="3"/>
  36.                 </li>
  37.             </ol>
  38.         </div>
  39.     </section>
  40.     <section class="page-head-title">
  41.         <div class="container">
  42.             <div class="row">
  43.                 <div class="col-md-12">
  44.                     <h1 class="section-title-page">{{ seoMeta.h1 ?? 'front_page.instruction'|trans({}, 'dc_citroen') }}</h1>
  45.                 </div>
  46.             </div>
  47.         </div>
  48.     </section>
  49.     {% if app.request.locale == 'ru' %}
  50.         {% include '@DcSite/Citroen/Service/translations/citroen-instructions.ru.html.twig' %}
  51.     {% else %}
  52.         {% include '@DcSite/Citroen/Service/translations/citroen-instructions.ua.html.twig' %}
  53.     {% endif %}
  54. {% endblock %}
  55. {% block pageJS %}
  56. {% endblock pageJS %}