{% extends '@DcSite/Lexus/template.html.twig' %}
{% block head %}
<title>{{ 'seo.reglament_to_model.title'|trans({'%dealer%': dealer.name, '%brand%': dealer.brand.name, '%model%': modelTitle}, 'dc_base') }}</title>
<meta name="description" content="{{ 'seo.reglament_to_model.description'|trans({'%model%': modelTitle}, 'dc_lexus') }}" />
<meta name="keywords" content="{{ 'seo.to_prices.keywords'|trans({}, 'dc_lexus') }}" />
<link rel="stylesheet" type="text/css" href="/dist/{{ MODE }}/dcsite/lexus/css/lexusPricesTOModel.css?{{ VERSION }}">
{% endblock %}
{% block ogtagDynamic %}
<meta property="og:title" content="{{ 'seo.reglament_to_model.title'|trans({'%dealer%': dealer.name, '%brand%': dealer.brand.name, '%model%': modelTitle}, 'dc_base') }}"/>
<meta property="og:description" content="{{ 'seo.reglament_to_model.description'|trans({'%model%': modelTitle}, 'dc_lexus') }}"/>
{% endblock %}
{% block content %}
{% set pageName = 'prices' %}
{% include '@DcSite/Lexus/Service/breadcrumbs.html.twig' with { 'pageName': pageName } %}
{% include '@DcSite/Modules/reglament-to/index.html.twig' with {
servicePath: 'lexus_service_order_to',
webpack: 1,
} %}
{% endblock %}
{% block script %}
<script src="/dist/{{ MODE }}/dcsite/lexus/js/lexusPricesTOModel.js?{{ VERSION }}"></script>
<script>
$(() => {
window.initRegulations({
initUrl : '{{ path('base_regulation_init') }}',
variationUrl : '{{ path('base_regulation_variations') }}',
regulationsUrl : '{{ path('base_regulations') }}',
locale: '{{ app.request.locale }}',
model: '{% if model %}{{ model }}{% else %}{% endif %}'
});
});
</script>
{% endblock %}