Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

templates/base.html.twig line 13

Open in your IDE?
  1. <!doctype html>
  2. <html lang="{{ app.request.locale }}">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport"
  6.           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <title>{% block title %}{% endblock %} | {{ brandService.brand.name }}</title>
  9.     <link rel="icon" type="image/png" href="{{ asset('build/images/' ~ brandService.brand.favicon) }}"/>
  10.     {% block stylesheets %}
  11.         {{ encore_entry_link_tags('app') }}
  12.         {{ encore_entry_link_tags(brandService.brand.stylesheet) }}
  13.     {% endblock %}
  14. </head>
  15. <body class="d-flex flex-column {{ app.environment == 'dev' ? 'dev-warning' : '' }} {% block bodyClass %}{% endblock %}">
  16. {% block header %}
  17.     {% include 'includes/header.html.twig' %}
  18. {% endblock %}
  19. <div class="container pb-5">
  20.     {% block body %}{% endblock %}
  21. </div>
  22. {% block footer %}
  23.     {% include 'includes/footer.html.twig' %}
  24. {% endblock %}
  25. <div class="modal fade" id="async-modal" aria-labelledby="async-modal" aria-hidden="true">
  26.     <div class="modal-dialog">
  27.         <div class="modal-content">
  28.             <div class="modal-header d-none">
  29.                 <h5 class="modal-title color-text h2" id="exampleModalLabel"></h5>
  30.                 <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="X"></button>
  31.             </div>
  32.             <div class="spinner d-flex justify-content-center p-5">
  33.                 <style>
  34.                     .lds-ring {
  35.                         display: inline-block;
  36.                         position: relative;
  37.                         width: 80px;
  38.                         height: 80px;
  39.                     }
  40.                     .lds-ring div {
  41.                         box-sizing: border-box;
  42.                         display: block;
  43.                         position: absolute;
  44.                         width: 64px;
  45.                         height: 64px;
  46.                         margin: 8px;
  47.                         border: 8px solid #1c1c1c;
  48.                         border-radius: 50%;
  49.                         animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  50.                         border-color: #1c1c1c transparent transparent transparent;
  51.                     }
  52.                     .lds-ring div:nth-child(1) {
  53.                         animation-delay: -0.45s;
  54.                     }
  55.                     .lds-ring div:nth-child(2) {
  56.                         animation-delay: -0.3s;
  57.                     }
  58.                     .lds-ring div:nth-child(3) {
  59.                         animation-delay: -0.15s;
  60.                     }
  61.                     @keyframes lds-ring {
  62.                         0% {
  63.                             transform: rotate(0deg);
  64.                         }
  65.                         100% {
  66.                             transform: rotate(360deg);
  67.                         }
  68.                     }
  69.                 </style>
  70.                 <div class="lds-ring">
  71.                     <div></div>
  72.                     <div></div>
  73.                     <div></div>
  74.                     <div></div>
  75.                 </div>
  76.             </div>
  77.             <div class="modal-body d-none"></div>
  78.             <div class="modal-footer d-flex d-none">
  79.                 <button type="button" class="annulation-btn" data-bs-dismiss="modal">{{ 'app.common.buttons.cancel'|trans }}</button>
  80.                 <div class="button-group"></div>
  81.             </div>
  82.         </div>
  83.     </div>
  84. </div>
  85. {% block javascripts %}
  86.     {{ encore_entry_script_tags('app') }}
  87.     {% if discountBannerService.active(discountBannerService.banner) %}
  88.         {{ encore_entry_script_tags('discount-banner') }}
  89.     {% endif %}
  90. {% endblock %}
  91. </body>
  92. </html>