src/DcSiteBundle/Resources/views/Lexus/Service/price-for-car-model.html.twig line 1

Open in your IDE?
  1. {% extends '@DcSite/Lexus/template.html.twig' %}
  2. {% block head %}
  3.     <title>{{ 'seo.reglament_to_model.title'|trans({'%dealer%': dealer.name, '%brand%': dealer.brand.name, '%model%': modelTitle}, 'dc_base') }}</title>
  4.     <meta name="description" content="{{ 'seo.reglament_to_model.description'|trans({'%model%': modelTitle}, 'dc_lexus') }}" />
  5.     <meta name="keywords"  content="{{ 'seo.to_prices.keywords'|trans({}, 'dc_lexus') }}" />
  6.     <link rel="stylesheet" type="text/css" href="/dist/{{ MODE }}/dcsite/lexus/css/lexusPricesTOModel.css?{{ VERSION }}">
  7. {% endblock %}
  8. {% block ogtagDynamic %}
  9.     <meta property="og:title" content="{{ 'seo.reglament_to_model.title'|trans({'%dealer%': dealer.name, '%brand%': dealer.brand.name, '%model%': modelTitle}, 'dc_base') }}"/>
  10.     <meta property="og:description" content="{{ 'seo.reglament_to_model.description'|trans({'%model%': modelTitle}, 'dc_lexus') }}"/>
  11. {% endblock %}
  12. {% block content %}
  13.     {% set pageName = 'prices' %}
  14.     {% include '@DcSite/Lexus/Service/breadcrumbs.html.twig' with { 'pageName': pageName } %}
  15.     {% include '@DcSite/Modules/reglament-to/index.html.twig' with {
  16.         servicePath: 'lexus_service_order_to',
  17.         webpack: 1,
  18.     } %}
  19. {% endblock %}
  20. {% block script %}
  21.     <script src="/dist/{{ MODE }}/dcsite/lexus/js/lexusPricesTOModel.js?{{ VERSION }}"></script>
  22.     <script>
  23.         $(() => {
  24.             window.initRegulations({
  25.                 initUrl : '{{ path('base_regulation_init') }}',
  26.                 variationUrl : '{{ path('base_regulation_variations') }}',
  27.                 regulationsUrl : '{{ path('base_regulations') }}',
  28.                 locale: '{{ app.request.locale }}',
  29.                 model: '{% if model %}{{ model }}{% else %}{% endif %}'
  30.             });
  31.         });
  32.     </script>
  33. {% endblock %}