<!doctype html><html lang="{{ app.request.locale }}"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>{% block title %}{% endblock %} | {{ brandService.brand.name }}</title> <link rel="icon" type="image/png" href="{{ asset('build/images/' ~ brandService.brand.favicon) }}"/> {% block stylesheets %} {{ encore_entry_link_tags('app') }} {{ encore_entry_link_tags(brandService.brand.stylesheet) }} {% endblock %}</head><body class="d-flex flex-column {{ app.environment == 'dev' ? 'dev-warning' : '' }} {% block bodyClass %}{% endblock %}">{% block header %} {% include 'includes/header.html.twig' %}{% endblock %}<div class="container pb-5"> {% block body %}{% endblock %}</div>{% block footer %} {% include 'includes/footer.html.twig' %}{% endblock %}<div class="modal fade" id="async-modal" aria-labelledby="async-modal" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header d-none"> <h5 class="modal-title color-text h2" id="exampleModalLabel"></h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="X"></button> </div> <div class="spinner d-flex justify-content-center p-5"> <style> .lds-ring { display: inline-block; position: relative; width: 80px; height: 80px; } .lds-ring div { box-sizing: border-box; display: block; position: absolute; width: 64px; height: 64px; margin: 8px; border: 8px solid #1c1c1c; border-radius: 50%; animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; border-color: #1c1c1c transparent transparent transparent; } .lds-ring div:nth-child(1) { animation-delay: -0.45s; } .lds-ring div:nth-child(2) { animation-delay: -0.3s; } .lds-ring div:nth-child(3) { animation-delay: -0.15s; } @keyframes lds-ring { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> <div class="lds-ring"> <div></div> <div></div> <div></div> <div></div> </div> </div> <div class="modal-body d-none"></div> <div class="modal-footer d-flex d-none"> <button type="button" class="annulation-btn" data-bs-dismiss="modal">{{ 'app.common.buttons.cancel'|trans }}</button> <div class="button-group"></div> </div> </div> </div></div>{% block javascripts %} {{ encore_entry_script_tags('app') }} {% if discountBannerService.active(discountBannerService.banner) %} {{ encore_entry_script_tags('discount-banner') }} {% endif %}{% endblock %}</body></html>