{% extends '@templates/Front/Shop/layout.html.twig' %}
{% block stylesheets %}
{{ parent() }}
<link rel="stylesheet" href="{{ asset('/assets/shop/css/toastr.min.css') }}">
<link rel="stylesheet" href="{{ asset('/assets/shop/css/vignette_shop.v1.css') }}">
{{ encore_entry_link_tags('extra-options') }}
{{ encore_entry_link_tags('peaj') }}
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script type="application/javascript">
MESSAGE_INVALID_REGISTRATION_PLATE = '{{ 'app.ui.invalid_registration_plate'|trans }}';
MESSAGE_INVALID_VIN = '{{ 'app.ui.invalid_vin'|trans }}';
</script>
{% block webpack_app '' %}
<script src="{{ asset('assets/shop/js/toastr.min.js') }}"></script>
<script src="{{ asset('assets/shop/js/jquery.validate.min.js') }}"></script>
{{ encore_entry_script_tags('peaj') }}
{% endblock %}
{% block javascripts_app %}
<script src="{{ asset('assets/shop/js/jquery.min.js') }}"></script>
{% endblock javascripts_app %}
{% block header %}
{% include '@templates/AdminCustom/Layout/loading.html.twig' with { showLoading: true } %}
{% block metatags %}
<meta name="description" content="{% if descriptionForSeo|length > 0 %}{{ descriptionForSeo.content }}{% endif %}"/>
{% endblock %}
<meta name="keywords" content="{% if keywordsForSeo|length > 0 %}{{ keywordsForSeo.content }}{% endif %}"/>
<div class="custom-container">
<div style="max-width: 100%">
<div class="bg-white">
<header>
{% include '@templates/Front/Shop/v2/_header.html.twig' %}
{{ sonata_block_render_event('sylius.shop.layout.after_header') }}
</header>
</div>
</div>
</div>
{% endblock %}
{% block content %}
<div class="d-inline-flex align-items-center mx-3 bcrumb">
<a href="{{ path('sylius_shop_homepage') }}" class="section text-primary" style="font-size: 0.8em;">
{{ 'sylius.ui.home'|trans }}
</a>
<div class="divider">/</div>
<small class="section active">{{ 'app.ui.toll_tax'|trans }}</small>
</div>
{% include '@templates/Front/Peaj/_partials/content.html.twig' %}
{% endblock %}
{% block footer %}
{{ parent() }}
{% if lastProductStatus.peajStatus %}
<script>
var locale = '{{ app.request.getLocale() }}';
</script>
{% if companyServicesPeajPage is defined and companyServicesPeajPage is not null %}
{% include '@templates/Front/Peaj/_partials/company-services-peaj-modal.html.twig' %}
{% endif %}
{% endif %}
{% endblock %}