{% extends '@DcSite/Nissan/base.html.twig' %}
{% block seo %}
<title>{{ seoMeta.title ?? 'seo.reglament_to_model.title'|trans({'%dealer%': dealer.name, '%brand%': dealer.brand.name, '%model%': modelTitle}, 'dc_base') }}</title>
<meta name="description" content="{{ seoMeta.description ?? 'pages.seo.regulation_to_model.description'|trans({'%model%': modelTitle},'dc_nissan') }}" />
{% endblock seo %}
{% block ogtagDynamic %}
<meta property="og:title" content="{{ seoMeta.title ?? 'seo.reglament_to_model.title'|trans({'%dealer%': dealer.name, '%brand%': dealer.brand.name, '%model%': modelTitle}, 'dc_base') }}"/>
<meta property="og:description" content="{{ seoMeta.description ?? 'pages.seo.regulation_to_model.description'|trans({'%model%': modelTitle},'dc_nissan') }}"/>
{% endblock ogtagDynamic %}
{% block css %}
<link rel="stylesheet" href="{{ asset('bundles/dcsite/css/modules/base-style/form-control.css') }}">
<link rel="stylesheet" href="{{ asset('/bundles/core/css/modules/slick/slick.css') }}">
<link rel="stylesheet" href="{{ asset('bundles/dcsite/css/nissan/modules/service-widget.css') }}">
<link rel='stylesheet' type='text/css' href='{{ asset('/bundles/insurance/css/jquery.mCustomScrollbar.css') }}' />
{% endblock %}
{% block content %}
<section class="title-breadcrumbs">
<div class="container">
<div class="row">
<div class="col-12">
<div class="vidi_breadcrumbs" >
<span>
<a href="{{ path('nissan_homepage') }}" ><span>{{ 'pages.bc.index'|trans({},'dc_nissan') }}</span></a>
</span>
<span class="bc_sep"> → </span>
<span>
<a href="{{ path('nissan_service_online-booking') }}"><span>{{ 'pages.bc.service'|trans({},'dc_nissan') }}</span></a>
</span>
<span class="bc_sep"> → </span>
<span>
<a href="{{ path('nissan_service_regulations_to') }}"><span>{{ 'modules.online-booking.regulation'|trans({}, 'dc_base') }}</span></a>
</span>
<span class="bc_sep"> → </span>
<span class="bc_title">{{ modelTitle }}</span>
</div>
</div>
</div>
</div>
</section>
{% include '@DcSite/Modules/reglament-to/index.html.twig' with {servicePath : 'nissan_service_online-booking'} %}
{% endblock content %}
{% block pageJs %}
<script>
app.onCustomEvent('appInit', function () {
app.loadJs('{{ asset('bundles/dcsite/js/regulations.js') }}',function () {
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 %}