{% extends '@DcSite/Subaru/base.html.twig' %}
{% block title %}
<title>{{ 'seo.reglament_to_model.title'|trans({'%dealer%': dealer.name, '%brand%': dealer.brand.name, '%model%': modelTitle}, 'dc_base') }}</title>
{% endblock title %}
{% block seo %}
<meta name="description" content="{{ 'base.seo.regulation_to_model.description'|trans({'%model%': modelTitle}, 'dc_subaru') }}" />
<meta name="keywords" content="{{ 'base.seo.keywords_service'|trans({}, 'dc_subaru') }}" />
{% endblock seo %}
{% 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="{{ 'base.seo.regulation_to_model.description'|trans({'%model%': modelTitle}, 'dc_subaru') }}"/>
{% 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/subaru/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/subaru/landing-page.css') }}">
<link rel="stylesheet" href="{{ asset('bundles/dcsite/css/modules/service.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('/bundles/core/css/bootstrap_build/carousel.css') }}">
{% endblock %}
{% block content %}
<main class="d-flex flex-column">
<section class="breadcrumbs__new">
<div class="container">
<ol class="global_breadcrumbs__new" itemscope itemtype="https://schema.org/BreadcrumbList">
<li class="marker__none" itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ path('subaru_homepage') }}">
<span class="breadcrumbs__link" itemprop="name">SUBARU</span></a>
<meta itemprop="position" content="1"/>
</li>
<div class="arrow-bcs"> ❯ </div>
<li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ path('subaru_service_order_to') }}">
<span style="color: #ABABAB;" class="breadcrumbs__link" itemprop="name">{{ 'menu.service.index'|trans({}, 'dc_subaru') }}</span></a>
<meta itemprop="position" content="2"/>
</li>
<div class="arrow-bcs"> ❯ </div>
<li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ path('subaru_service_regulations_to') }}">
<span style="color: #ABABAB;" class="breadcrumbs__link" itemprop="name">{{ 'modules.online-booking.regulation'|trans({}, 'dc_base') }}</span></a>
<meta itemprop="position" content="3"/>
</li>
<div class="arrow-bcs"> ❯ </div>
<li itemprop="item" class="marker__none" itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem">
<span style="color: #ABABAB;" class="breadcrumbs__link" itemprop="name">{{ modelTitle }}</span>
<meta itemprop="position" content="3"/>
</li>
</ol>
</div>
</section>
{% include '@DcSite/Modules/reglament-to/index.html.twig' with {servicePath : 'subaru_service_order_to'} %}
</main>
{% 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 %}