{% extends '@DcSite/Nissan/base.html.twig' %}
{% block seo %}
<title>{{ 'seo.reglament_to.title'|trans({'%brand%': dealer.brand.name, '%dealer%': dealer.name}, 'dc_base') }}</title>
<meta name="description" content="{{ 'pages.seo.regulation_to.description'|trans({},'dc_nissan') }}" />
{% endblock seo %}
{% block ogtagDynamic %}
<meta property="og:title" content="{{ 'seo.reglament_to.title'|trans({'%brand%': dealer.brand.name, '%dealer%': dealer.name}, 'dc_base') }}"/>
<meta property="og:description" content="{{ 'pages.seo.regulation_to.description'|trans({},'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') }}' />
<link rel="stylesheet" href="{{ asset('bundles/dcsite/css/modules/reglament-to/style.css') }}">
<link rel="stylesheet" href="{{ asset('bundles/dcsite/css/modules/service/widget-order-to.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 class="bc_title">{{ 'modules.online-booking.regulation'|trans({}, 'dc_base') }}</span>
</div>
</div>
</div>
</div>
</section>
<div class="container text-center mt-5">
<h1>Регламент ТО</h1>
</div>
{% include '@DcSiteBundle/Modules/regulations/regulations-to.html.twig' with { modelPath : 'nissan_service_regulations_to_model'} %}
{% endblock content %}
{% block pageJs %}
<script>
app.onCustomEvent('appInit', function () {
app.loadJs('{{ asset('/bundles/dcsite/js/regulations-to.js') }}', function () {
initRegulationTo({
locale: '{{ app.request.locale }}',
findUrl: '{{ path('online-service-find') }}',
brandId: {{ dealer.Brand.Id }},
});
});
});
</script>
{% endblock pageJs %}