src/DcSiteBundle/Resources/views/Citroen/Service/tires-hotel.html.twig line 1

Open in your IDE?
  1. {% extends '@DcSite/Citroen/base.html.twig' %}
  2. {% block seo %}
  3.     <title>{{ seoMeta.title ?? 'seo.tires_hotel.tires_hotel_title'|trans({}, 'dc_citroen') }}</title>
  4.     <meta name="description" content="{{ seoMeta.description ?? 'seo.tires_hotel.tires_hotel_desc'|trans({}, 'dc_citroen') }}" />
  5. {% endblock seo %}
  6. {% block ogtagDynamic %}
  7.     <meta property="og:title" content="{{ seoMeta.title ?? 'seo.tires_hotel.tires_hotel_title'|trans({}, 'dc_citroen') }}"/>
  8.     <meta property="og:description" content="{{ seoMeta.description ?? 'seo.tires_hotel.tires_hotel_desc'|trans({}, 'dc_citroen') }}"/>
  9. {% endblock ogtagDynamic %}
  10. {% block css %}
  11. {% endblock %}
  12. {% block content %}
  13.     <section class="breadcrumbs__new">
  14.         <div class="container">
  15.             <ol class="global_breadcrumbs__new" itemscope itemtype="https://schema.org/BreadcrumbList">
  16.                 <li class="marker__none" itemprop="itemListElement" itemscope
  17.                     itemtype="https://schema.org/ListItem">
  18.                     <a itemprop="item" href="{{ path('citroen_homepage') }}">
  19.                         <span class="breadcrumbs__link" itemprop="name">CITROЁN</span></a>
  20.                     <meta itemprop="position" content="1"/>
  21.                 </li>
  22.                 <div class="arrow-bc"></div>
  23.                 <li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
  24.                     itemtype="https://schema.org/ListItem">
  25.                     <span style="color: #837F7F; font-family: 'UbuntuRegular';" class="breadcrumbs__link" itemprop="name">{{ 'seo.service.title'|trans({}, 'dc_citroen') }}</span>
  26.                     <meta itemprop="position" content="2"/>
  27.                 </li>
  28.                 <div class="arrow-bc"></div>
  29.                 <li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
  30.                     itemtype="https://schema.org/ListItem">
  31.                     <span style="color: #837F7F; font-family: 'UbuntuRegular';" class="breadcrumbs__link" itemprop="name">{{ 'seo.tires_hotel.title'|trans({}, 'dc_citroen') }}</span>
  32.                     <meta itemprop="position" content="3"/>
  33.                 </li>
  34.             </ol>
  35.         </div>
  36.     </section>
  37.     <section class="page-head-title">
  38.         <div class="container">
  39.             <div class="row">
  40.                 <div class="col-md-12">
  41.                     <h1 class="section-title-page">{{ seoMeta.h1 ?? 'seo.tires_hotel.title'|trans({}, 'dc_citroen') }}</h1>
  42.                 </div>
  43.             </div>
  44.         </div>
  45.     </section>
  46.     <section class="warranty head-image-mobile">
  47.         <div class="container">
  48.             <div class="row">
  49.                 <div class="col-md-12">
  50.                     <img src="{{ asset('/bundles/dcsite/img/citroen/service/tires-hotel.png') }}" alt="" class="w-100">
  51.                 </div>
  52.             </div>
  53.         </div>
  54.     </section>
  55.     {% if app.request.locale == 'ru' %}
  56.         {% include '@DcSite/Citroen/Service/translations/tires-hotel.ru.html.twig' %}
  57.     {% else %}
  58.         {% include '@DcSite/Citroen/Service/translations/tires-hotel.ua.html.twig' %}
  59.     {% endif %}
  60.     <section class="section-padd pt-0">
  61.         <div class="container">
  62.             <div class="row">
  63.                 <div class="col-md-12 text-center">
  64.                     <h2 class="section-title mb-5">{{ 'modules.title'|trans({}, 'dc_citroen') }}</h2>
  65.                 </div>
  66.             </div>
  67.             <div class="row justify-content-center">
  68.                 <div class="col-md-6">
  69.                     {% include '@DcSite/Citroen/Modules/form.html.twig' %}
  70.                 </div>
  71.             </div>
  72.         </div>
  73.     </section>
  74. {% endblock %}
  75. {% block pageJS %}
  76. {% endblock pageJS %}