- {% if noCookiesCSS is not defined %}
- <link rel="stylesheet" href="{{ asset('/bundles/my/css/cookies-warning.css') }}">
- {% endif %}
- <noindex>
-     {% if app.request.locale == 'ru' %}
-         <section class="cookies" id="cookies-warning" v-show="isInit">
-             <div class="cookies-warning-footer">
-                 <p class="text-muted">
-                     <span>ИСПОЛЬЗОВАНИЕ COOKIE<br></span>Я разрешаю
-                     {% if dealer is defined %}
-                         {{ dealer.nameByLocale(app.request.locale) }}
-                     {% else %}
-                         <span class="inherit-span" v-html="options.site"></span>
-                     {% endif %}
-                     использовать
-                     <a :href="options.policyUrl">файлы «cookie».</a> Ознакомиться с
-                     <a :href="options.policyUrl" target="_blank">Политикой конфиденциальности</a>.
-                 </p>
-                 <div class="text-right d-flex justify-content-center">
-                     <button class="btn btn-primary btn-cookie" @click.prevent="saveCookies">
-                         Принять
-                     </button>
-                 </div>
-             </div>
-         </section>
-     {% else %}
-         <section class="cookies" id="cookies-warning" v-show="isInit">
-             <div class="cookies-warning-footer" >
-                 <p class="text-muted">
-                     <span>ВИКОРИСТАННЯ COOKIE<br></span>Я дозволяю
-                     {% if dealer is defined %}
-                         {{ dealer.nameByLocale(app.request.locale) }}
-                     {% else %}
-                         <span class="inherit-span" v-html="options.site"></span>
-                     {% endif %}
-                     використовувати
-                     <a :href="options.policyUrl">файли «cookie».</a> Ознайомтесь з
-                     <a :href="options.policyUrl" target="_blank">Політикою Конфіденційності</a>.
-                 </p>
-                 <div class="text-right d-flex justify-content-center">
-                     <button class="btn btn-primary btn-cookie" @click.prevent="saveCookies">
-                         ПОГОДЖУЮСЬ
-                     </button>
-                 </div>
-             </div>
-         </section>
-     {% endif %}
- </noindex>