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

Open in your IDE?
  1. {% extends '@DcSite/Opel/base.html.twig' %}
  2. {% block seo %}
  3.     <title>{{ seoMeta.title ?? 'seo.tires_hotel.title'|trans({}, 'dc_opel') }}</title>
  4.     <meta name="description" content="{{ seoMeta.description ?? 'seo.tires_hotel.description'|trans({}, 'dc_opel') }}" />
  5. {% endblock seo %}
  6. {% block ogtagDynamic %}
  7.     <meta property="og:title" content="{{ seoMeta.title ?? 'seo.tires_hotel.title'|trans({}, 'dc_opel') }}"/>
  8.     <meta property="og:description" content="{{ seoMeta.description ?? 'seo.tires_hotel.description'|trans({}, 'dc_opel') }}"/>
  9. {% endblock ogtagDynamic %}
  10. {% block css %}
  11.     <link rel="stylesheet" href="{{ asset('/bundles/dcsite/css/opel/modules/tires-hotel.css') }}">
  12. {% endblock %}
  13. {% block content %}
  14.     <section class="breadcrumbs__new">
  15.         <div class="container">
  16.             <ol class="global_breadcrumbs__new" itemscope itemtype="https://schema.org/BreadcrumbList">
  17.                 <li class="marker__none" itemprop="itemListElement" itemscope
  18.                     itemtype="https://schema.org/ListItem">
  19.                     <a itemprop="item" href="{{ path('opel_homepage') }}">
  20.                         <span class="breadcrumbs__link" itemprop="name">Opel</span></a>
  21.                     <meta itemprop="position" content="1"/>
  22.                 </li>
  23.                 <div class="arrow-bcs"> ❯ </div>
  24.                 <li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
  25.                     itemtype="https://schema.org/ListItem">
  26.                     <a itemprop="item" href="{{ path('opel_service_online-booking') }}">
  27.                         <span style="color: #ABABAB;" class="breadcrumbs__link" itemprop="name">{{ 'pages.service.breadcrumb_title'|trans({}, 'dc_opel') }}</span></a>
  28.                     <meta itemprop="position" content="2"/>
  29.                 </li>
  30.                 <div class="arrow-bcs"> ❯ </div>
  31.                 <li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
  32.                     itemtype="https://schema.org/ListItem">
  33.                     <span style="color: #ABABAB;" class="breadcrumbs__link" itemprop="name">{{ 'pages.tires_hotel.breadcrumb_title'|trans({}, 'dc_opel') }}</span>
  34.                     <meta itemprop="position" content="3"/>
  35.                 </li>
  36.             </ol>
  37.         </div>
  38.     </section>
  39.     <section class="heading_section container">
  40.         <img src="{{ asset('/bundles/dcsite/img/opel/bg/tires-hotel.jpg') }}" alt="">
  41.         <div class="heading_section-wrap">
  42.             <h1 class="main_title">{{ seoMeta.h1 ?? 'pages.tires_hotel.title'|trans({}, 'dc_opel') }}</h1>
  43.         </div>
  44.     </section>
  45.     {% if app.request.locale == 'ru' %}
  46.         {% include '@DcSite/Opel/Service/translations/tires-hotel.ru.html.twig' %}
  47.     {% else %}
  48.         {% include '@DcSite/Opel/Service/translations/tires-hotel.ua.html.twig' %}
  49.     {% endif %}
  50.     <section class="section_padd bg_grey">
  51.         <div class="container">
  52.             <div class="row">
  53.                 <div class="col-md-9 section-title">
  54.                     <span>{{ 'pages.tires_hotel.form_title'|trans({}, 'dc_opel') }}</span>
  55.                 </div>
  56.             </div>
  57.             {% include '@DcSiteBundle/Opel/Modules/form.html.twig' %}
  58.         </div>
  59.     </section>
  60. {% endblock %}
  61. {% block pageJS %}
  62. {% endblock %}