- {% extends '@Core/DCSite/core-dc-template.html.twig' %}
-     {% block head %}
-         <meta name="robots" content="noindex, nofollow" />
-         <meta name="google-site-verification" content="RLXfK0B_OSi3MwDTNxCzrk0w3cGs63mFRM6_PNOnp6I" />
-         {% block css %}
-         {% endblock css %}
-         {% block myHead %}
-         {% endblock %}
-         {% if app.user %}
-             <script>
-                 window.dataLayer = window.dataLayer || [];
-                 window.dataLayer.push(
-                 {
-                     'event':'userId',
-                     'user_id':'{{app.user.id}}',
-                 });
-             </script>
-         {% endif %}
-         {% if '/profile/basket/order-info/' in app.request.requestUri and order and order.state == 2 %}
-             <script>
-                 dataLayer = [{
-                     'transactionId': '{{ order.id }}',
-                     'transactionAffiliation': '{{ order.dealer }}',
-                     'transactionTotal': '{{ order.price }}',
-                     'transactionProducts': [{
-                         {% for item in items %}
-                             'sku': '{{ order.id }}',
-                             'name': '{{ item.title }}',
-                             'category': '{{ item.modelTitle }}',
-                             'price': '{{ item.price }}',
-                             'quantity': '{{ item.count }}'
-                         {% endfor %}
-                     }]
-                 }];
-             </script>
-         {% endif %}
-         <!-- Google Tag Manager -->
-         <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
-                     new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
-                 j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
-                 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
-             })(window,document,'script','dataLayer','GTM-5WFLZNW');</script>
-         <!-- End Google Tag Manager -->
-     {% endblock head %}
-     {% block body %}
-         <!-- Google Tag Manager (noscript) -->
-         <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WFLZNW"
-                           height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
-         <!-- End Google Tag Manager (noscript) -->
-         {% block header %}
-         {% endblock header %}
-         {% block content %}
-         {% endblock %}
-         {% block footer %}
-         {% endblock footer %}
-     {% endblock body %}
- {% block coreBottomJs %}
-     <script>
-         app.onCustomEvent('appInit', function () {
-             app.loadCss('{{ asset('bundles/my/css/style.css') }}');
-         });
-         window.fbAsyncInit = function() {
-             FB.init({
-                 appId      : '2535896753112918',
-                 cookie     : true,
-                 xfbml      : true,
-                 version    : 'v5.0'
-             });
-             FB.AppEvents.logPageView();
-         };
-         (function(d, s, id){
-             var js, fjs = d.getElementsByTagName(s)[0];
-             if (d.getElementById(id)) {return;}
-             js = d.createElement(s); js.id = id;
-             js.src = "https://connect.facebook.net/en_US/sdk.js";
-             fjs.parentNode.insertBefore(js, fjs);
-         }(document, 'script', 'facebook-jssdk'));
-         app.onCustomEvent('appInit', function () {
-             $('.navbar-toggler').on('click', function(){
-                 $(this).toggleClass('collapsed');
-                 $('#mainNav').toggleClass('collapse');
-             });
-             setTimeout(function (){
-                 $('.page_navigation-open').on('click', function() {
-                     $(".page_navigation-wrap").toggleClass('showed-mob');
-                     $(".page_navigation-open").toggleClass('page_navigation-open-close');
-                 });
-                 $('.header_right-item-mobile').on('click', function(){
-                     $(".navigation .dropdown-menu").toggleClass('show');
-                     $(".navigation_wrap-right .dropdown").toggleClass('show');
-                     $(".navigation").toggleClass('active');
-                     $(".page_navigation-wrap").toggleClass('z-index');
-                     $(".header_right-item-mobile").toggleClass('active');
-                 });
-             },1000);
-         });
-     </script>
-     {% block profileJS %}
-     {% endblock profileJS %}
-     {% block pageJS %}
-     {% endblock pageJS %}
- {% endblock coreBottomJs %}